我正在尝试在本地运行的平均堆栈应用程序中包含一个包含数据的json文件。
我尝试了这些方法,但仍然出现404错误
$http.get('MOCK_DATA.json').success(function (res){
$scope.Alldata = res.data;
$scope.$apply;
});
var getPromise = $http.get('MOCK_DATA.json').then(function(response){
//whatever is returned here will be accessible in the .then that is chained
return response.data;
});
console.log(getPromise);
$http({
method: 'get',
url: 'MOCK_DATA.json'
}).then(function (response){
$scope.Alldata = response;
},function (error){
});
答案 0 :(得分:0)
只需从正确的文件中导入json文件,您就可以像访问它一样 var data = require('./ data.json');