当$ scope项存储在对象中时,如何将$ scope项绑定并绑定到模型

时间:2015-11-04 22:01:13

标签: angularjs

我目前在此对象中存储了$scope个项目:

$scope.columnList = {
    "date": $scope.newDate, 
    "time": $scope.newTime, 
    "exercise": $scope.newExercise,
    "reps": $scope.newReps,
    "weight": $scope.newWeight, 
    "location": $scope.newLocation
};

我将它们存储在一个对象中,因为这意味着我可以使用ng-repeat

构建一个表

我在使用此对象构建输入表时遇到问题。我认为$scope项在此ng-repeat中没有正确绑定,因为ng-model未对$scope项进行评估。

<td ng-repeat="(key, value) in columnList"><input type="text" ng-model="value"></td>

PLUNKER

有办法吗?

键正确评估,但它们是字符串:

<th ng-repeat="(key, value) in columnList">{{key}}</th>

0 个答案:

没有答案