我无法使用Chrome或Edge(尚未在Opera和Safari中测试)ng-include
指令。我注意到只在Firefox中正常工作。
我有一个函数,可以在按钮ng-click上将适当的模板名称加载到$ scope var。 这是我的一段代码:
JS:
$scope.loadTemplate = function(url){
//alert(url);
$scope.templatePath = url;
// alert($scope.templatePath);
};
和 HTML:
<md-button class="" style="width:100%; text-align: left;"
ng-click="loadTemplate('template1.html')">
testButton
</md-button>
...
<div ng-include="templatePath"></div>
有解决方法或解决方案吗?我认为它是正确实施的。