使用firebase云功能中的toLocaleString格式化货币值

时间:2017-08-01 20:05:37

标签: javascript node.js firebase google-cloud-functions

我正在尝试使用node.js中的toLocaleString格式化double值以获取firebase云功能。这是我使用的代码:

PriceFormated = Price.toFixed(2).toLocaleString("de-DE", {style: "currency", currency: CurrencySymbol});
console.log('Price:',PriceFormated)

结果是: "价格:1984.00"

但它应该是: "价格:1.984,00"

作为参考,请检查: http://droidscript.org/javascript/Global_Objects/Number/toLocaleString().html 要么 https://www.jsman.net/manual/Standard-Global-Objects/Number/toLocaleString

代码中是否有错误,或者firebase云功能是否按预期工作?

0 个答案:

没有答案