防止从缓存加载JSON文件

时间:2017-11-13 09:26:49

标签: javascript json caching

当我第一次加载页面时,我收到200个状态代码,页面正在加载文件。问题是从第二次获得304状态并且页面无法正常工作。如何为我的JS文件中的特定JSON文件设置缓存控制

var app = angular.module("myApp", ['angular.filter']);

app.controller("deviceCtrl", function($scope, $rootScope, $http,$timeout)      {    

var planReq = $http.get("data/callplans.json").then(function (response1) {
  $scope.callplanList = response1.data;
  return response1;
});

});

1 个答案:

答案 0 :(得分:0)

试试这个......:

var planReq = $http.get("data/callplans.json?r=" + Math.random() ).then(function (response1) {