6
我如何可以添加自定義字段的角度範圍與通過字段屬性一起,如下:AngularJs定製指令隔離範圍的自定義字段
angular.module('app')
.directive("myDirective", function(){
function NewObj()
{
this.id = 0;
this.name = "";
}
return{
restrict: "E",
templateUrl:"partials/directives/temp.html",
scope:{
viewId:"=",
dataObj: new NewObj() //This is the custom obj
}
}
}
當我這樣做,我得到無效的隔離範圍定義。 這怎麼可能被幫助?
下面是關於指令範圍像樣的解釋:http://umur.io/angularjs-directives-using-isolated-scope-with-attributes/ –