小程序使用toFixed会遇到的bug

toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。

但是返回的却是String类型,如果将这个String类型的值再使用toFixed(),那程序将会抛出异常。

解决办法:

parseFloat((self.data.ticketPriceAmount ).toFixed(2));

将计算好的String类型转为Float类型即可。

你可能感兴趣的:(小程序使用toFixed会遇到的bug)