gpt4 book ai didi

Angularjs - 如何将选定的单选按钮值传递给 Controller

转载 作者:行者123 更新时间:2023-12-02 01:53:15 26 4
gpt4 key购买 nike

我有一个动态生成的单选框列表。

<div id="Address" class="modal-body" ng-show="AData">
<h5>
Select the correct address information from the list below.
</h5>
<label class="list-group-item" ng-repeat="address in Addresses">
<input type="radio" class="SuggestAddresses" ng-model="SelectedAddress" name="grAVR" ng-value="address" />
{{values.AddressLine1}} {{values.City}} {{values.State}} {{values.Zip}}
</label>
</div>

我试图在我的 Controller 中访问模型 SelectedAddress 但它的值在 Controller 中未定义。当我将此单选框模型值存储在我的 Controller 中已有的预定义范围变量中时,它工作正常。

最佳答案

为上面的注释添加一些解释,ng-model="adress.selectedAdress" 将允许您访问对象属性。

请注意,您正在使用列表中的一个对象,在您的 ng-repeat 中用 adress 表示。这对应于 Adresses[adress].selectedAdress

关于Angularjs - 如何将选定的单选按钮值传递给 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21645596/

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