0
我在對象數組中使用ng-repeat。 testList包含測試名稱,我想模擬速率和持續時間,並在我的控制器中獲取它。我能夠獲得選定的值。但費率和持續時間不會到來。在ng-repeat內動態添加新模型
.input-group.margin-bottom-20
table.table
thead
tr
td.col-md-5
td.col-md-4
td.col-md-3
tbody
tr(ng-repeat='test in testList')
td
input(type='checkbox', ng-model='test.selected', value='{{test.name}}')
| {{test.name}}  
td
.input-group
input(type='text', ng-model='test.rate', pattern = "[0-9]{10}",placeholder='Rate in Rupees')
br
.input-group
input(type='number', ng-model='test.duration', pattern = "[0-9]{10}",placeholder='Duration to deliver report')
如果您可以提供codepen/jsfiddle或其他演示,我可以嘗試爲您解決這個問題。但是,當您將其寫入代碼本時,您可能會自己找到解決方案。 – Baki
是數組testList中的速率和持續時間? –
不,它不在arrayList –