2
在我的項目中,我需要從下拉列表中選擇多個選項。我的代碼看起來像這樣:在AngularJs中從下拉列表中選擇多個選項
//Controller
$scope.data = [{id: 1, Country: Zambia},
{id: 2, Country: United Kingdom}
{id: 3, Country: USA}]
$scope.selectedCountry = [];
//view
<select name="multipleSelect" id="multipleSelect" ng-model=" selectedCountry" multiple
ng-options="country.country as country.country for country in data"></select>
<h4> {{selectedCountry}}</h4>
上面的上下文工作,我可以從下拉列表中選擇多個選項。這link幫助我實現了這一點。
問題所在。 現在我遇到的問題是,當我從下拉列表中選擇選項時,我需要能夠在selectedCountry數組中傳遞id和國家,而不僅僅是國家。因此,例如在上述情況下,當你選擇第一個國家時,通過selectedCountry Array傳遞的信息將是這樣的[「贊比亞」],但我真正想要的是這樣的事情 [{id: 1, Country Zambia}].
爲了解決這個問題,我試圖做到這一點的看法:
<select name="multipleSelect" id="multipleSelect" ng-model=" selectedCountry" multiple
ng-options="{Id: country.Id, Country: country.country } as country.country for country in data"></select>
<h4> {{selectedCountry}}</h4>
運作良好,並傳遞給SELECTEDCOUNTRY陣列中的數據就像是{id: 1, Country: zambia}
的對象,但問題是,我不能選擇從下拉菜單中的多個選項我只能選擇1個選項。 我在做什麼錯?什麼是實現這個目標的最好方法? 謝謝