微信小程序报错:TypeError: Cannot read property ‘substring‘ of undefined

具体报错截图:

微信小程序报错:TypeError: Cannot read property ‘substring‘ of undefined_第1张图片

 报错的关键代码:



{{business.fomatTime(item.checkBillTime)}} 

提示报错是上面的关键代码,但微信小程序前端已经能打印后端发送过来的数据,问题应该是 在使用该函数时,传入了空的值 以导致数据渲染报错。

已打印调用函数前后格式对比:

调用前格式:20200809152640

调用后格式: 2020-08-09 15:26:40 

调用函数business.wxs

var fomatTime = function(time){
  return time.substring(0, 4) + "-" + time.substring(4, 6) + "-" + time.substring(6, 8) + " " + time.substring(8, 10) + ":" +
  time.substring(10, 12) + ":" + time.substring(12, 14);
}

module.exports = {
  fomatTime:fomatTime
}

处理思路:利用三元表达式处理所取字符串为空的情况即可 


{{item.checkBillTime ? business.fomatTime(item.checkBillTime) : ""}}

再优化wxs代码,处理值为空的情况,以防出现值为空返回"--::"的数据 ;处理例如 : " "    这种数据(trim是js中处理字符串空格问题的)

var fomatTime = function(time){
    if(time.trim()){
      return time.substring(0, 4) + "-" + time.substring(4, 6) + "-" + time.substring(6, 8) + " " + time.substring(8, 10) + ":" +
    time.substring(10, 12) + ":" + time.substring(12, 14);
    }
    else{
      return "";
    }
}

处理完毕之后没有报错发生;

PS:此为个人学习笔记报错处理,若看完毫无帮助,实在抱歉;

你可能感兴趣的:(报错处理,前端)