我为客户可以使用的库创建指令。我需要让客户为指令创建自己的模板,并将该模板的绝对url值传递给我的指令。我的一个指令将在其中包含另一个自定义指令,并且它的模板将根据父指令属性之一的值来计算。这是一个例子:
<parent-dir menu-template="this.html" item-template="that.html"></parent-dir>
我有一个这个指令的模板,如下所示:
<ul style="list: none" ng-repeat="item in menu">
<child-dir template="{{itemTemplate}}"></child-dir>
</ul>
我的指示如下:
angular.module('myApp')
.directive('parentDir', function () {
return {
restrict: 'E',
scope: {
menuTemplate: '@',
itemTemplate: '@',
menuType: '@',
menuName: '@',
menuId: '@',
},
templateUrl: function (element, attrs) {
alert('Scope: ' + attrs.menuTemplate);
return attrs.menuTemplate;
},
controller: function ($scope, $element, $attrs) {
$scope.defaultSubmit = false;
alert('Menu: '+$attrs.menuTemplate);
alert('Item: ' + $attrs.itemTemplate);
$scope.itemTemplate = $attrs.itemTemplate;
if ($attrs.$attr.hasOwnProperty('defaultSubmit')) {
alert('It does');
$scope.defaultSubmit = true;
}
}
};
})
.directive('childDir', function () {
return {
restrict: 'E',
require: '^parentDir',
templateUrl: function (element, attrs) {
alert('Item Template: ' + attrs.template);
return attrs.template;
},
controller: function ($scope, $element, $attrs) {
$scope.job;
alert('Under job: ' + $scope.itemTemplate);
}
};
});
我没有显示所有代码,但这是我的问题的主要部分。当我运行它时,我继续为childDir上的模板定义。
从parentDir延续itemTemplate值的最佳做法是什么,以便childDir可以将其用作模板?
答案 0 :(得分:5)
您遇到问题的原因是因为生成templateUrl
的函数在将scope
分配给您的指令之前运行 - 必须在插入数据之前完成可以更换。
换句话说:在templateUrl
函数运行时,template
属性的值仍为"{{itemTemplate}}"
。在指令的链接(preLink
准确)功能运行之前,情况仍将如此。
我创建了一个plunker来演示点here。务必打开控制台。您将看到templateUrl
在父级和子级链接功能之前运行。
那你做什么呢?
幸运的是,angular提供了$templateRequest
服务,允许您以与使用templateUrl
相同的方式请求模板(它还使用方便的$templateCache
。
将此代码放在您的链接功能中:
$templateRequest(attrs.template)
.then(function (tplString){
// compile the template then link the result with the scope.
contents = $compile(tplString)(scope);
// Insert the compiled, linked element into the DOM
elem.append(contents);
})
然后,您可以删除对指令定义对象中template
的任何引用,并且一旦插入属性,这将安全地运行。