如何在react-native中使用Numeral.js中的语言环境?

时间:2017-04-07 07:11:06

标签: react-native numeral.js

我想在Numeral.js中更改另一个国家/地区的货币格式。怎么做?

3 个答案:

答案 0 :(得分:5)

你有没有设法解决这个问题?

我需要和pt-br一起使用,我做到了:

import Numeral from "numeral";
import "numeral/locales/pt-br";

// switch between locales
Numeral.locale('pt-br');

//Usage
Numeral(100).format("$0.00")
// output R$100,00

答案 1 :(得分:0)

您可以执行以下操作;

//导入

import Numeral from "numeral";

//使用

numeral("10").value()

答案 2 :(得分:0)

Numeral.js v。2.0.6

import numeral from 'numeraljs';

<Typography>$ {numeral(3000).format('0,0')} pesos</Typography>