gpt4 book ai didi

javascript - 在组合框angularjs中显示数据数组

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

我想在组合框中显示来自 json 对象的数据。

 <select ng-model="vm.datasource.currencyFormatChoice" ng-options="currencyFormatChoice as currencyFormatChoice for currencyFormatChoice in vm.datasource.currencyFormat"></select>

这是我的 json 对象。现在我想将 displayValue 设置到组合框中。

"currencyFormat": [ { "displayValue": "€ 1.000,00", "value": "{0:C2}" }, { "displayValue": "€ 1.000", "value": "{0:C0}" }, { "displayValue": "$ 1,000.00", "value": "{0:C2}" }, { "displayValue": "$ 1,000", "value": "{0:C0}" }, { "displayValue": "1.000,00", "value": "{0:N2}" }, { "displayValue": "1.000", "value": "{0:N0}" }, { "displayValue": "1,000.00", "value": "{0:N2}" }, { "displayValue": "1,000", "value": "{0:N0}" } ]

使用 HTML 代码,我得到 [object Object] 而不是 1000 美元。如何将 displayValue 放入组合框中?

亲切的问候

最佳答案

这成功了!

ng-options="currencyFormat as currencyFormat.displayValue for currencyFormat in vm.datasource.currencyFormat"

关于javascript - 在组合框angularjs中显示数据数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38200401/

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