下面的代碼似乎並沒有從所定義的指令進行打印文本:角JS評論指令功能不正常
<div ng-app="myApp">
<!-- directive: devComment -->
</div>
<script>
app.directive("devComment", function(){
return{
restrict : "M",
replace : true,
template : " A comment made this print to html "
};
});
</script>
我強烈不鼓勵使用註釋指令,它們似乎不遵守正常的AngularJS指令命名規則。您還需要使用'replace',這是一個已棄用的屬性。 – Phil