美文网首页
通用错误处理

通用错误处理

作者: 夜夜夜空灵 | 来源:发表于2018-11-07 19:00 被阅读0次

    在http.js文件中

    const tips= {
       1:'错误,'
       1005:'appkey无效',
       3000:'期刊不存在' 
    }
    
    class HTTP{
             request(params){.....
            }
    
            _show_error(error_code){
                  if(!error_code){
                      error_code = 1
                  }
                  wx.showToast({
                        title:tips[error_code],
                        icon:'none',
                        duration:2000
                  })
            }
    }
    

    后记
    在else语句中 我们就能专业调用了

    else{
        let error_code = res.data.error_code
        _show_error(error_code)
    }
    
    

    相关文章

      网友评论

          本文标题:通用错误处理

          本文链接:https://www.haomeiwen.com/subject/drfbxqtx.html