动态包含模板 angular 指令

Dynamic include template angular directive

所以我想做一个自动包含标签和内容的指令,但是我无法获取存储在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 但它 returns undefined 在检索内容时,我也尝试采用相对于脚本路径的路径,但仍然 undefined.

因为您在 ng-include 中错过了 ',因为您将模板名称传递为 string。因为 ng-include 指令需要 string 作为输入。

ng-include="\''+availableTabs[index].content+'\'"

将呈现如下

ng-inlcude="'partials/tabs/tab1.html'"