gpt4 book ai didi

javascript - 绑定(bind)多个输入模型

转载 作者:行者123 更新时间:2023-11-28 00:04:04 25 4
gpt4 key购买 nike

我正在尝试以这种方式绑定(bind) ng-model:

      <md-list-item ng-repeat="reply in replies">
<md-input-container flex style="margin-top:-7px;" ng-show="replyLink">
<label>Your reply ...</label>
<input ng-model="replyMsg" ng-enter="addReply(reply.id)">
</md-input-container>
</md-list-item>

从另一边看:

 $scope.replyMsg...

使用此功能,当我更改一个 ng-model 的值并记录 replyMsg 的内容时,我会得到 undefined 作为输出消息。我该如何解决这个问题?

我尝试将其设为 ng-model="replyMsg{{$index}}",但是,我无法找到如何在另一边使用 $scope。

有什么好的建议吗?

最佳答案

你可以这样做。每个回复都会包含他们的回复msz。

<md-list-item ng-repeat="reply in replies">
<md-input-container flex style="margin-top:-7px;" ng-show="replyLink">
<label>Your reply ...</label>
<input ng-model="reply.replyMsg" ng-enter="addReply(reply.id)">
</md-input-container>
</md-list-item>

关于javascript - 绑定(bind)多个输入模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31515533/

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