为生产设置 Angular
Setting up Angular for production
我一直在尝试遵循 运行 和 angular app in production 的建议。但是我一直在努力禁用评论和 css class 指令:
$compileProvider.commentDirectivesEnabled(false);
$compileProvider.cssClassDirectivesEnabled(false);
当我尝试将这些命令添加到配置块时,我收到错误消息:
$compileProvider.commentDirectivesEnabled is not a function
下面的codepen演示了我的问题,如果你注释掉这两行,那么代码运行没有任何问题:
您使用的 angular 的 1.5.8 version 中不存在这两种方法。
虽然它们存在于1.6.0-rc.0 version中。
我一直在尝试遵循 运行 和 angular app in production 的建议。但是我一直在努力禁用评论和 css class 指令:
$compileProvider.commentDirectivesEnabled(false);
$compileProvider.cssClassDirectivesEnabled(false);
当我尝试将这些命令添加到配置块时,我收到错误消息:
$compileProvider.commentDirectivesEnabled is not a function
下面的codepen演示了我的问题,如果你注释掉这两行,那么代码运行没有任何问题:
您使用的 angular 的 1.5.8 version 中不存在这两种方法。
虽然它们存在于1.6.0-rc.0 version中。