我正在尝试将JSON文件加载到我的JavaScript文件中。但是,我对如何这样做感到茫然。
我的 app.js 文件:
{{1}}
我的项目目录中有一个 test_data.json 文件。上面的错误给出了“require is not defined”,所以似乎我必须安装RequireJS?有没有其他方法可以在不安装任何插件的情况下这样做?
答案 0 :(得分:3)
尝试使用Angular的$http
服务,您可以更好地控制加载,错误等:
myApp.controller('MainCtrl', ['$scope', '$http', function ($scope, $http) {
console.log("in here");
$http.get('../test_data.json').success(function(data) {
console.log(data);
})
}]);