绑定模型有输入和选择的问题。从下拉列表中选择模型时,输入值会更改。但如果输入的输入值等于list的某些值,则下拉列表不会改变。
<select
ng-model="Choice.SelectedOption"
ng-options="choice.ID as choice.Name for choice in Choice.Options">
</select>
{{Choice.SelectedOption.ID}}
input model <input type="text" ng-model="Choice.SelectedOption">
input value {{ Choice.SelectedOption }}
从下拉列表中更改模型,然后尝试将模型从输入更改为1,2或3(它的用户ID)
答案 0 :(得分:1)
将<input type="text">
更改为<input type="number">
修复它。