我刚刚开始学习Angular并且我已经在SO上寻找使用angular加载JSON文件的解决方案,我已经完成了其他人发布的解决方案,但我无法从我的json文件中获取数据以显示某些原因.
我的json文件(test.json)很简单:
{
"array": [
{"thing": "thing1"},{"thing": "thing2"},{"thing": "thing3"}
],"name": "robert"
}
这是我的js文件:
var myMod = angular.module("myMod",[]);
myMod.controller("myCont",function ($scope,$http) {
$scope.thing = "hi";
$http.get("/test.json")
.success(function (data) {
$scope.stuff = data.array;
$scope.name = data.name;
})
.error(function (data) {
console.log("there was an error");
});
});
最佳答案
原文链接:https://www.f2er.com/html/425520.html