gpt4 book ai didi

angularjs - 按名称选择并使用 Angular 获取所选项目的 Id

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

我正在一个使用 HTML 和 Angular 的 MVC 项目中工作。我有一个选择列表,它是根据在输入框中输入的名称来选择的,但我无法获取 ID。

这有效,但我没有得到所选项目的 ID:

<input type="text" ng-model="selectedCountry">
<select class="form-control"
ng-model="selectedCountry"
ng-options="country.name as country.name for country in countries">
<option value="">Select Country</option>

这是行不通的,因为我无法通过名称进行选择并获取 ID:

<input type="text" ng-model="selectedCountry">
<select class="form-control"
ng-model="selectedCountry"
ng-options="country.id as country.name for country in countries">
<option value="">Select Country</option>

这里是 plunker:Plunker

感谢您的帮助!

最佳答案

<select class="form-control"  data-ng-change="call(country.id)"
ng-model="country.id"
ng-options="country.id as country.name for country in countries">
<option value="">Select Country</option>
</select>

关于angularjs - 按名称选择并使用 Angular 获取所选项目的 Id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43001301/

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