AngularJs ng-repeat指令中怎么实现含有自定义指令的动态html

2024-12-23 04:47:28
推荐回答(1个)
回答1:

在ng-repeat中,含有动态的html,而这些html中含有自定义指令。
因为希望实现一个能够复用的table,所以定义了一个指令myStandTable,指令代码大概如下:

var myCommon = angular.module("myCommon",[]);
myCommon.directive("myStandTable", function () {
return {
restrict: "A",
templateUrl: "app/template/tableTem.html",
transclude: false,
replace: true,
controller: function ($scope,$compile, commonService) {
// do something...
},
link: function (scope, element, attris) {
}
}
});

tableTem.html文件代码如下:


















{{item}}




{{item[name]}}