完成之前压缩站点


9

在为网站和jquery设置压缩之前,是否应该完成网站开发?如果是这样,那么如果您需要对站点进行进一步维护,将会发生什么情况。

Answers:


7
  1. 您应该维护未压缩的版本以进行开发。
  2. 使用任何工具自动压缩javascript文件。
  3. 如果Joomla调试模式为true,则包含未压缩的文件,否则包含压缩的文件。

小费

在joomla中检查调试模式。

echo JDEBUG ? 'debug mode is on' : 'debug mode is off' ;

JDEBUG始终定义
MrWhite

1
是的,因为它已在index.php文件中检查。github.com/joomla/joomla-cms/blob/staging/index.php#L34
Shyam,

好的,这似乎表明可以肯定地说是正确的。实际上,似乎已经定义/includes/framework.phpindex.php。(我最初担心的是,如果JDEBUG未定义,则以上声明将评估为true,这可能是不正确的。我前一段时间调试WordPress时遇到了这种情况;因此,我很担心。)
MrWhite 2014年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.