<div ng-app="myApp" ng-controller="customersCtrl">
<ul>
<li ng-repeat="x in names">
{{ x.Name + ', ' + x.Country + ', ' + x.City }}
</li>
</ul>
<p ng-repeat="y in localnames">{{ y.Adrs + ', ' + y.Place + ', ' + y.Country }}</p>
</div>
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("customers.json")
.success(function (response) {$scope.names = response.records;});
.success(function (response) {$scope.localnames = response.locrecords;});
});
//JSON
{
"records":[
{"Name":"Alfreds Futterkiste","City":"Berlin","Country":"Germany"},
{"Name":"Comércio Mineiro","City":"São Paulo","Country":"Brazil"}
]
"locrecords":[
{"Adrs":"My Address","Place":"Mavelikara","Country":"India"},
{"Adrs":"My Address","Place":"Mavelikara","Country":"India"}
]
}
我正在尝试使用Angular.js将JSON数据加载到HTML。添加第二个数组后为什么不能正常工作?删除$scope.localnames
时,它确实有效。
使用的数据和HTML位于:https://drive.google.com/file/d/0B4DOAWmRNQn1cGNEWVRqOU9xUVE/view?usp=sharing
答案 0 :(得分:1)
您的javascript代码中出现语法错误。你应该删除额外的;
:
var app = angular.module('myApp', []);
app.controller('customersCtrl', function($scope, $http) {
$http.get("customers.json")
.success(function (response) {$scope.names = response.records;})
.success(function (response) {$scope.localnames = response.locrecords;});
});
答案 1 :(得分:1)
您违反了$http
链接。
$http.get("customers.json")
.success(function (response) {$scope.names = response.records;}); <-- remove ;
.success(function (response) {$scope.localnames = response.locrecords;});
此外,您的JSON已损坏。您在,
数组后缺少records
(逗号)。
<强> JSON 强>
{
"records":[
{"Name":"Alfreds Futterkiste","City":"Berlin","Country":"Germany"},
{"Name":"Comércio Mineiro","City":"São Paulo","Country":"Brazil"}
],
"locrecords":[
{"Adrs":"My Address","Place":"Mavelikara","Country":"India"},
{"Adrs":"My Address","Place":"Mavelikara","Country":"India"}
]
}
答案 2 :(得分:0)
你的问题的答案。您的JSON无效。您错过了记录和刻记之间的,
。格式化代码有助于; - )
{
"records": [{
"Name": "Alfreds Futterkiste",
"City": "Berlin",
"Country": "Germany"
}, {
"Name": "Comércio Mineiro",
"City": "São Paulo",
"Country": "Brazil"
}],
"locrecords": [{
"Adrs": "My Address",
"Place": "Mavelikara",
"Country": "India"
}, {
"Adrs": "My Address",
"Place": "Mavelikara",
"Country": "India"
}]
}
答案 3 :(得分:0)
修复JSON和HTML
HTML
$http.get("customers.json")
.success(function (response) {
$scope.names = response.records;
$scope.localnames = response.locrecords;
});
JSON
{
"records":[
{"Name":"Alfreds Futterkiste","City":"Berlin","Country":"Germany"},
{"Name":"Comércio Mineiro","City":"São Paulo","Country":"Brazil"}
],
"locrecords":[
{"Adrs":"My Address","Place":"Mavelikara","Country":"India"},
{"Adrs":"My Address","Place":"Mavelikara","Country":"India"}
]
}
答案 4 :(得分:-2)
它的数组, 我想你必须像下面这样打电话, $ scope.localnames = response.locrecords [0]
如果它不起作用,那么你应该在它上面调用parseJSON(data [0])。
谢谢, 萨姆拉特萨卡 博客:coderstutorial.blogspot.com