我需要能夠動態顯示貨幣的值。對於一個固定的貨幣,我能夠做到:如何根據每條記錄數據動態顯示Angular.js中的貨幣?
<span id="currency-custom">{{amount | currency:'₹'}}</span>
但如果我想基於改變貨幣從服務器什麼來呢?在我的控制,我有:
$scope.longestRide = {
'fromAddress': 'xxx',
'toAddress': 'yyy',
'mycurrency': '₹',
'cost': '238',
'duration': '00:49:02'
}
但這似乎並沒有工作:
<span id="currency-custom">{{amount | currency:mycurrency}}</span>
我怎麼能顯示基於JavaScript的數據結構中的貨幣?
它不應該是'{{量|貨幣:longestRide.mycurrency}}'? – Yoshi