所以我想制定一个指令来自动包含标签和内容,但我无法将内容存储在partials/tabs/tab[x].html
中。
AvailableTabs
- 常量定义为数组:
myApp.constant("availableTabs", [
{name:'tab1', title:'One', content:'partials/tabs/tab1.html'},
{name:'tab2', title:'Two', content:'partials/tabs/tab2.html'},
{name:'tab3', title:'Three', content:'partials/tabs/tab3.html'}
]);
我的指令检测到要包含的正确选项卡,并尝试包含选项卡的内容:
myApp.directive('myTabs',['availableTabs','$templateCache', function(availableTabs, $templateCache) {
return {
restrict: 'A',
template: function (elem, attr) {
for (index = 0; index < availableTabs.length; ++index) {
if(availableTabs[index].name == attr.myTabs) {
return '<tab heading="'+availableTabs[index].title+'" ng-show="1"> ' +
'<div ng-include="'+availableTabs[index].content+'"></div>'+
'</tab>';
//return '<tab heading="'+availableTabs[index].title+'" ng-show="1"> ' +
// $templateCache.get(availableTabs[index].content)+
// '</tab>';
}
}
},
};
}]);
问题是标签的内容是空的,我没有错误。
我的html如下:
<tabset>
<div my-tabs="tab1"></div>
<div my-tabs="tab2"></div>
<div my-tabs="tab3"></div>
</tabset>
我尝试在指令中注入$templateCache
但在检索内容时返回undefined
,我也尝试采用相对于脚本路径的路径,但仍然是undefined
。
答案 0 :(得分:1)
因为您在'
中错过了ng-include
,因此将模板名称传递为string
。因为ng-include
指令需要string
作为输入。
ng-include="\''+availableTabs[index].content+'\'"
将呈现如下
ng-inlcude="'partials/tabs/tab1.html'"