1
我的指令是以下角指令解釋屬性作爲字符串
angular
.module('app.directives')
.directive('myTable',function(){
function linkFn(
scope,
element,
attrs
) {
console.log(attrs.attributes);
}
return {
link: linkFn,
template: 'some.html',
scope: {
attributes: '=',
},
replace : true
}
});
而且我用的,而不是指令,因爲
<my-table attributes="management.table.attributes"></my-table>
然而,在鏈接功能的attrs.attribute
值解析字符串management.table.attributes
,是一個數組。
我會很感激任何形式的幫助或指導。
謝謝!