NgModel用于一组动态输入

时间:2016-11-11 04:09:31

标签: angularjs

问题

我的问题是我无法将ng-model分配给一组输入     是动态生成的。在我以前的问题中,(已经解决了)我问     关于如何在" a"(意思是一个)动态输入中分配ng-model。     (现在的问题)现在,我有一套输入。

我尝试了什么

Set 1
<input type="number" min="1" ng-model="grades[$index]" >
<input type="number" min="1" ng-model="grades[$index]" >
<input type="number" min="1" ng-model="grades[$index]" >
Set 2
<input type="number" min="1" ng-model="grades[$index]" >
<input type="number" min="1" ng-model="grades[$index]" >
<input type="number" min="1" ng-model="grades[$index]" >
... so on until the last set 

Check this plunk

1 个答案:

答案 0 :(得分:1)

您可以将附加属性添加到您的详细信息数组并将其分配给ng-model

"details": [{
    "answerid": "1",
    "questionid": "32",
    "question": "GFDS",
    "pi": "P1",
    "answer": "jyhgf",
    "val": ""
}]

  <li id="student-eval">Evaluation Score: &nbsp;&nbsp;&nbsp;<input type="number" min="1" ng-model="answer.val" ></li>