把价钱转化为xx.xx的形式
Posted Milk.╮
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了把价钱转化为xx.xx的形式相关的知识,希望对你有一定的参考价值。
把number类型转化为字符串类型
let orderPayFeeStr = this.state.orderPayFee.toString();//商品价格转化为字符串
if(orderPayFeeStr.indexOf(".") != -1){
orderPayFeepointBefore = orderPayFeeStr.split(".")[0];
orderPayFeepointAfter = orderPayFeeStr.split(".")[1].length == 1?orderPayFeeStr.split(".")[1]+"0":orderPayFeeStr.split(".")[1];
}else{
orderPayFeepointBefore = orderPayFeeStr;
orderPayFeepointAfter = "00";
}
以上是react框架中用
以上是关于把价钱转化为xx.xx的形式的主要内容,如果未能解决你的问题,请参考以下文章