gpt4 book ai didi

javascript - 如何将 angularjs 对象绑定(bind)到它们的键和值

转载 作者:搜寻专家 更新时间:2023-11-01 05:11:47 25 4
gpt4 key购买 nike

我阅读了一些关于 Angular 模型绑定(bind)的文章,出于好奇,我想知道是否也可以将键绑定(bind)到输入,

http://jsfiddle.net/x3azn/jM28y/4/

所以我希望通过输入框更新主 arr 并实现 2 路键绑定(bind)。

这可能吗?

最佳答案

如此处所述Binding inputs to an array of primitives using ngRepeat => uneditable inputs , 是的,你可以,但不是那样

试试这个

function ctrl($scope) {
$scope.arr = [{name:'1', lastname: '2'},
{name:'3', lastname: '4'},
{name:'5', lastname: '6'}]
}

<div ng-repeat="person in arr">
<input type="text" ng-model="person.name" />
<input type="text" ng-model="person.lastname" />
</div>

http://jsfiddle.net/jM28y/5/

关于javascript - 如何将 angularjs 对象绑定(bind)到它们的键和值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23643592/

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