如何在本地运行平均堆栈应用程序时获取包含在angularjs控制器中的json文件?

时间:2019-04-03 09:56:53

标签: javascript angular

我正在尝试在本地运行的平均堆栈应用程序中包含一个包含数据的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){

});

1 个答案:

答案 0 :(得分:0)

只需从正确的文件中导入json文件,您就可以像访问它一样 var data = require('./ data.json');