我是 AngularJS 的新手,我正在编写一个应用程序,它通过 $http jsonp 方法接收带有回调的 JSON 数据。未设置缓存参数,但浏览器缓存数据。我该如何解决?
$scope.fetch=function () {
$http({method: 'JSONP', url: 'http://angularjs.org/greet.php?callback=JSON_CALLBACK&name=Super%20Hero'})
.success(function(data) {
$scope.current = data.salutation.toLowerCase();
console.log($scope.current);
$scope.dim=$scope.current; doIt();}).error(function(data) {
$scope.current = data.salutation.toLowerCase() || "Request failed"; $scope.dim=$scope.current;});
};