我发现角度很好的功能.指令可以设置为处理评论.
{ ... restrict: 'M' ... }
这是在文档中讲的技巧.该指令的用法如下:
<!-- directive: my-directive-name -->
只要我不需要将参数传递给这个指令就可以正常工作.
是否有可能设置参数的指令限于评论?
什么是语法
<!-- directive: my-directive-name this is all an argument -->
指令之后的所有内容都是传递到指令中的值.
app.directive('myDirectiveName',function(){ return { restrict: 'M',link: function(scope,elem,attr) { alert(attr.myDirectiveName); //alerts "this is all an argument" } }; });