對不起,我的語言能力,希望你能理解所有。Angularjs:輸入ng-repeat元素
我需要爲ng-repeat元素進行輸入,以將輸入數據傳遞給http post。 例如:我有4個元素,我讓輸入的所有元素,和Fe:
elem1- input: 1
elem2- input: 4
elem3- input: 1
elem4- input: 2
這裏是我的代碼:
.panel-body.note-link ng-repeat=("meal in mealsList track by $index")
a data-toggle="tab"
h4.pull-right.text-muted
| {{meal.price}} zł
h4.text-success
i.fa.fa-close.text-danger<> ng-click="removeMeal($index)" style="cursor: pointer;font-size: 15px;"
| {{meal.name}} {{$index}}
input.form-control type="number" ng-model="example"
| {{example}}
,我不知道,如何將輸入數據傳遞給控制器。 任何提示,技巧?
所以,現在,我應該怎麼做,當我想看到的 「榜樣」 輸入,例如,第一頓飯的對象? –
將它附加到「膳食」對象。 然後,當它渲染所有膳食時,每餐都會有自己的「example」輸入綁定到「example」屬性 –