我是 AngularJS 的新手。我向服务器发布命令,服务器给我回复。我的 POST 命令可以正常工作,因为我将响应放在警报视图中并将其作为 JSON 返回,因此我可以在警报视图中看到响应。
这是我的代码:
var appControllers = angular.module('app', ['jsonService']);
appControllers.controller('post', function($scope, $http) {
$http({
withCredentials: true,
method : 'POST',
url : 'http://myURL/command',
data : 'myData',
headers : {
'Content-Type' : 'application/x-www-form-urlencoded;charset=UTF-8'
}
}).success(function (data, status, headers, config) {
var JSONData = JSON.stringify(data);
$scope.persons = JSONData;
alert(JSONData);// assign $scope.persons here as promise is resolved here
}).error(function (data, status, headers, config) {
$scope.status = status;
alert(status);
});
});
我的问题:我想解析 JSON 中的一个特定项目。我知道我应该使用点表示法来访问 JSON 的相应子项,但如果我使用点表示法,它就不起作用。
这是我的 HTML 代码:
<ul data-ng-controller="post">
<li ng-repeat="person in persons">
<div><a href="http://button2" data-role="button" ng-bind="person.firstName"></a></div>
</li>
</ul>
任何提示或帮助将不胜感激。