如何使用其他ng-model中的数据填充ng-options?
我有第一个模型
ng-model='getCountryList' data='countryList'
CountryList是一列带有标题的名称(称为Country)。
然后我有一个下拉列表:
Country: <select ng-model="selectedCountry" ng-options="Country for Country in countryList" ></select>
上面的换行符给了我一个列表,但它填充了&#34; [object Object]&#34;而不是实际的名字。如何使上述线路正常工作?