如何使用angularjs将json从api下载到我的本地存储。 我有一个数据库,我想存储在我的计算机中,但不知道如何保存它。我知道如何获取数据并使用
在浏览器中查看数据angular.module("myModule",[])
.controller('myController',['$scope','$http',function(response){
$http.get(json file url).then(function(response){
console.log(response)
})
}])
答案 0 :(得分:0)
您可以将json保存在localstorage中,如:
angular.module("myModule",[])
.controller('myController',['$scope','$http',function(response){
$http.get(json file url).then(function(response){
localStorage.setItem('jsonResult', response);
})
}])
在获得价值的同时:
var response = localStorage.getItem('jsonResult');