【小程序】解决TypeError: Cannot read property 'toFixed' of undefined

用wepy开发小程序,绑定数据需要保留两位小数,wepy不可以绑定数据时直接使用.toFixed(),楼主用wxs封装调用

// num1为需格式化的数值,num2为需保留的小数位数
function toFix(num1, num2){
    return Number(num1.toFixed(num2))
}

但是经常会出现 Cannot read property 'toFixed' of undefined 的问题

通过测试发现,出现这种情况的时候是后台返回的num1为0,按理说toFixed(0,2)也是为0呀

在wxs的toFix里打印了num1发现,当num1为0时传过来wxs打印出来的是 undefined

知道问题就好办了,加个判断解决报错。(wepy坑太多了)

function toFix(num1, num2){
    if(typeof(num1)=='undefined'){
        return num1
    }else{
        return Number(num1.toFixed(num2))
    }
}

 

你可能感兴趣的:(小程序)