gpt4 book ai didi

javascript - 选择选项中的 Angular 组逗号分隔值

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

我遇到这个问题,我无法在选择下拉选项中对这个逗号分隔值进行分组,这是我的代码:

这是模型:

enter image description here

Angular 代码:

<select ng-model="attrModel" ng-options="option.Value group by option.Key.Name for option in attrModel track by option.Value"></select>

结果:

enter image description here

预期结果:

enter image description here

最佳答案

问题是你传递了整个Value数组作为 <option> 的值标签。

我不是 100% 确定如何正确处理选择中的嵌套数组,但您可以使用 <optgroup> 为了它。

<select ng-model="myFixedSelection">
<optgroup ng-repeat="group in attrModel track by $index" label="{{group.Key.Name}}">
<option ng-repeat="value in group.Value track by $index" >{{ value }}</option>
</optgroup>
</select>

查看工作 plnkr

关于javascript - 选择选项中的 Angular 组逗号分隔值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46174634/

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