angularjs 数组合并

为什么quest.answer就是出不来,我只想把数组array中的answer放入数组questions中,两个数组相关联的array数组的cid 和question的id值是相等的

html

<tr ng-repeat="quest in questions>

            <td ng-bind="quest.q_number"></td>
            <td ng-bind="quest.answer"></td>

</tr>

js

 $scope.questions = [];         
 $scope.last_questions = [];    
 $http.get('{{ action('xxxx@getAjaxQuestions') }}').then(function(response) {
        $scope.questions = response.data.questions;
        $scope.array = response.data.array;
  
         for(var i = 0; i<$scope.last_questions.length; i++){
           var temp = {};
           $scope.temp.id =  $scope.array[i].cid;
           $scope.temp.q_number = $scope.array[i].answer;
              questions.push(temp);
         }


      }, function(response) {


      });


小轩1986
浏览 1977回答 2
2回答

Deity0

我觉得是因为没有.answer这个属性
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

AngularJS