ng-include仅适用于Firefox

时间:2016-03-20 22:23:32

标签: javascript angularjs

我无法使用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>

有解决方法或解决方案吗?我认为它是正确实施的。

0 个答案:

没有答案