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