【发布时间】:2019-01-05 01:52:25
【问题描述】:
我需要在 React-Native 中将数字更改为货币格式 这在我的情况下不起作用:
import Numeral from "numeral";
Numeral(100).format("$0.00")
它输出:Metro Bundler 遇到内部错误。 我知道 Numeral 不是为 React-Native 构建的,但是否有解决方法或任何替代方法?
【问题讨论】:
-
文档状态 (numeraljs.com/#use-it):
npm install numeral --dev,然后是const Numeral = require('numeral');。
标签: reactjs react-native numeral.js