我编写了以下代码来学习Angular。它使用用户输入的输入来对包含对象列表的json文件进行ajax请求,然后将该列表打印给用户。
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script type="text/javascript">
angular.module('myApp', [])
.controller('myController', function($http) {
var ctlr = this;
ctlr.param = "";
ctlr.responses = [];
this.makeQuery = function() {
$http.get('http://localhost:8080?p=' + ctlr.param))
.then(function(data) {
ctlr.response = data; // data -> [{key1: value1,...},...]
});
};
});
</script>
</head>
<body ng-app="myApp">
<div ng-controller="myController as mc">
<input type="text" ng-model="mc.param">
<input type="submit" ng-click="mc.makeQuery()" value="Submit">
<ul>
<li ng-repeat="res in responses">
<span>{{res.key1}}, {{res.key2}}</span>
</li>
</ul>
</div>
</body>
</html>
当我在Chrome中运行此代码时,我看到一个空的项目符号列表。 Chrome DevTools显示了按预期返回的json文件,因此我知道
ctlr.param
可以工作。但是,列表中的项目符号为空,因此ng-repeat
无法正常工作。看来我无法正确访问cltr.responses
。有人知道为什么吗? 最佳答案
您的responses
对象绑定到this
而不是$scope
,因为您正在使用controller as
您应该使用mc.responses
而不是responses
<li ng-repeat="res in mc.responses">
<span>{{res.key1}}, {{res.key2}}</span>
</li>
您可以从johnpapa样式中阅读更多内容
关于javascript - 为什么我不能在此ng-repeat中访问数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39278139/