使用ng-click更改指令模板

时间:2015-05-09 12:40:05

标签: javascript angularjs angular-directive

我在控制器中有一些带有ng-click的按钮,我想在单击按钮时更改指令模板。实现这一目标的最佳方法是什么? (我稍后会使用元素效果的幻灯片)

2 个答案:

答案 0 :(得分:2)

指令:

myModule.directive('foo', function() {
    return {
        scope: {
            templateType: '@'
        },
        template: '<div ng-if="templateType == \'a\'">' +
            '    this is template A ' +
            '</div>' +
            '<div ng-if="templateType == \'b\'">' +
            '    this is template B ' +
            '</div>'
    };
});

模板:

<foo template-type="{{ templateType }}"></foo>
<a ng-click="templateType = 'b'" href="">Set template to b</a>

控制器:

$scope.templateType = 'a';

答案 1 :(得分:2)

您可以扩展@JB Nizet提供的示例并使用ng-include来交换模板,并且管理更大尺寸的模板变得更加容易。

myModule.directive('foo', function() {
    return {
        scope: {
            templateType: '@'
        },
        template: '<div ng-include="\'/templateRoot/\' + templateType">'+
                  '</div>'
    };
});

现在,您可以创建单独的模板文件,并使其在特定网址上可用(在本例中为/templateroot/a/templateroot/b