美文网首页
区分抛异常和接口返回来失败

区分抛异常和接口返回来失败

作者: 流泪手心_521 | 来源:发表于2020-09-18 14:07 被阅读0次
 pushSettingApi.getAppList(this.contentForm).then(res=>{
          if(res.status==0){//接口返回来的成功
              this.tableData=res.data.resultData;
              this.total=res.data.total;
           }else{
            this.$message.error(res.message)//接口返回来失败
          }
          }) .catch((error) => {//抛异常的时候
              console.log('/lib/listPage查询资料库管理', error)
          });

相关文章

网友评论

      本文标题:区分抛异常和接口返回来失败

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