我有一个问题是可以在ng-class
中声明注释ng-class="{'test':true,'test1':true, //some comment 'test2':true}"
答案 0 :(得分:6)
似乎没有。您可能需要使用多行注释语法,如下所示:
<div ng-class="{'test':true,'test1':true, /* some comment */ 'test2':true}"></div>
但这会引发错误:
语法错误:令牌'*'是意外的,在表达式[{'test':true,'test1':true,/ * some comment * /'test2':true}]的第29列期望[:]从[* some comment * /'test2':true}]开始。
但是,您可以通过在控制器/指令中声明样式来解决此问题:
$scope.styles = {
'test': true,
'test1': true,
/* some comment */ 'test2': true
};
并在你看来包括:
<div ng-app="MyApp">
<div ng-controller="MyCtrl">
<div ng-class="styles"></div>
</div>
</div>
答案 1 :(得分:0)
nope,没有办法在HTML中对JSON或ng-表达式进行评论,所以如果你需要练习,请在某处使用标准HTML(不在params之间的标签内,它会&#34;崩溃&#34;) 。在标签之前或之后使用它。但请记住,查看您网页源代码的用户可以看到这些评论。在发布之前使用一些uglify工具删除生产中的注释。