如果禁用缓存,Angularjs没有内容

时间:2017-09-05 10:23:55

标签: angularjs caching

所以我放置了我的ng-controller并调用ng-init一个函数来加载我内容的所有服务。但是,当我的缓存被禁用时,仍然没有加载任何内容。我已将所有API调用仍然无效。

编辑:

我需要在这里显示内容:

<ng-include ng-repeat="url in data.urls" src="fileName(url.id)"></ng-include>

然后我的功能是这样的:

$scope.fileName = function(id){
   switch(id){
       case '1':
           return "mypage.html";
           break;
     ....and so on.....

  }
 };

0 个答案:

没有答案