如何正确写入jsx中的fixed()

时间:2017-12-18 12:29:35

标签: reactjs

如何正确编写此表达式。

{currency.sale.toFixed(3)}

Scr

1 个答案:

答案 0 :(得分:2)

您需要将整个表达式包装在花括号{}中:

{currency.sale.toFixed(3) / currency.sale}