角度jsでAPIを呼び出して配列にアクセスしたいと考えています。そして、NGリピートでanglejsのapiから配列データにアクセスする方法
angularcodeそれらを使用する:私は、私はAPIからデータを受信していますが、私は使用することはできませんngのクリックイベントでAPIを呼び出し
<div ng-repeat="list in records">
<div class="row">
<h3>{{list}}}</h3>
<h3> {{ list}}</h3>
</div>
</div>
:
$scope.onsubmit = function() {
$scope.records = [];
var answers = [];
// Post your data to the server here. answers contains the questionId and the users' answer.
$http.get('http://localhost/api/leaderboard/:quizId', answers).success(function successCallbac(data,status) {
$scope.records = data;
//console.log(records);
});
};
HTMLコードをng-repeatレコードのそれらはhtmlで表示されず、エラーを表示しています。
angular.js:12477 ReferenceError: records is not defined
解決方法彼の問題?あなたが持っている