gpt4 book ai didi

javascript - Angularjs:ng-repeat 元素的输入

转载 作者:行者123 更新时间:2023-12-02 14:42:06 25 4
gpt4 key购买 nike

抱歉我的语言能力不好,希望你能理解。

我需要为 ng-repeat 元素进行输入,以将输入数据传递给 http post。例如:我有 4 个元素,对于我输入的所有元素,f.e:

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}}

我不知道如何将输入数据传递给 Controller ​​。有什么技巧、窍门吗?

最佳答案

angular.module('yourModule').controller('viewController', function($scope) {
$scope.mealList = [...];
$scope.example; //The input data will automatically bind to this variable.
});

如果您希望输入更改膳食对象中的数据,请执行以下操作:

input.form-control type="number"  ng-model="meal.example"

然后膳食对象的属性值将绑定(bind)到输入

关于javascript - Angularjs:ng-repeat 元素的输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36924955/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com