1
我目前正在使用Google腳本生成Google文檔。Google文檔中的Google腳本編號格式
我有一個數字格式問題。我有貨幣值的表,所以我試圖像這樣格式化文本(就像我怎麼會做它正常):
var number = 12345;
var currencyString = number.toLocaleString(); // This 'works' but outputs : 12345
var euroCurrencyString = number.toLocaleString("nl-NL", { style: 'currency', currency: 'EUR' }); // This throws exception
但引發此異常: 類型錯誤:InternalError該:非法的基數0。
是否有任何其他方式將數字格式化爲貨幣字符串? (EQ;€12.345,00)
編輯:的toLocaleString()的實際工作,我只是敲錯
刪除'toLocalseString'中的「s」。 – str
derp,我編輯我的問題:) toLocaleString()似乎工作,但不會以我想要的方式輸出它。當我向它提供參數時,它失敗。 – Arthesian