gpt4 book ai didi

javascript - ng-options 按问题跟踪

转载 作者:行者123 更新时间:2023-12-03 12:09:38 24 4
gpt4 key购买 nike

有一个选择下拉列表

 <select ng-model="filter_cli" ng-options=" gc.id as gc.name for gc in
businesses | filter :{type : 'CLIENT'} track by gc.id">

在应用程序中选择时,不会显示所选值,而是会分配该值。删除“track by”可以解决问题,但选项的值需要是对象的 id。

最佳答案

我认为您只需将track by移至过滤器之前即可:

<select ng-model="filter_cli" ng-options=" gc.id as gc.name for gc in
businesses track by gc.id | filter :{type : 'CLIENT'}">

关于javascript - ng-options 按问题跟踪,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25022730/

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