使用 $compile 为我的指令创建动态模板时,我遇到了范围丢失的问题。请参阅下面的代码(为清楚起见进行了修剪):
(function () {
'use strict';
angular.module('cdt.dm.directives').directive('serviceSources', ['$http', '$templateCache', '$compile', '$parse',
function ($http, $templateCache, $compile, $parse) {
return {
restrict: 'E',
replace: true,
scope: {
type: '=',
sources: '='
},
link: function (scope, element, attr) {
var template = 'Template_' + scope.type + '.html';
$http.get(template, { cache: $templateCache }).success(function (tplContent) {
element.replaceWith($compile(tplContent)(scope));
});
$compile(element.contents())(scope);
}
}
}
])
})();
有效并且加载了html模板。
html 模板如下所示:
<table>
<thead>
<tr>
<th>File</th>
</tr>
</thead>
<tbody data-ng-reapeat="src in sources">
<tr>
<td>{{src.fileName}}</td>
</tr>
</tbody>
sources 是一个包含两个元素的数组。在指令的范围内,它绝对是正确的,但在模板中,ng-repeat 不起作用(我猜是因为现阶段未定义源)。
有人知道我在做什么错吗?