gpt4 book ai didi

javascript - ng-options 不填充选择选项下拉

转载 作者:行者123 更新时间:2023-11-30 09:40:10 26 4
gpt4 key购买 nike

您好,我已经尝试实现几个示例中提供的更改,但似乎都没有用。我确实有一个 ng-model 并且我清楚地定义了我要接收的对象的属性。但是它仍然不起作用。任何帮助都会很棒。

HTML

<select chose ng-model="selected" ng-options="type as type.Name for type in ansExplanOpt">
<option value="">-- Select an Option --</option>
</select>

Controller

$scope.selected = ansExplanOpt.data;

对象正在填充(我检查过)并且它具有的属性是 Name 和 Id。

任何帮助都会很棒。谢谢

最佳答案

你们很亲密。看起来像是对 ng-model 值的误用。你的代码应该是这样的

<select chose ng-model="selectedValue" ng-options="type.Id as type.Name for type in ansExplanOpt">
</select>

ng-model 将是用户选择的内容。

他们的文档也很好地分解了它:https://docs.angularjs.org/api/ng/directive/ngOptions

关于javascript - ng-options 不填充选择选项下拉,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41512895/

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