首页 > 其他分享 >前端项目实战224-axios封装中得工具类

前端项目实战224-axios封装中得工具类

时间:2023-02-11 12:06:38浏览次数:41  
标签:200 axios return res 中得 404 const message 224


// 工具类
// 返回请求结果
export const returnMsg = async promise => {
try {
const res = await promise
if (res.status === 200) {
return res.data
} else {
return 'no 200 !'
}
} catch (e) {
console.log(e.name + '====' + e.message)
if (e.message.indexOf('404') !== -1) {
return '404'
}
return 'error'
}
}

标签:200,axios,return,res,中得,404,const,message,224
From: https://blog.51cto.com/u_15460007/6050154

相关文章

  • 洛谷 P2240 部分背包问题
    原题链接题解这道题是贪心只要按照性价比最高的取一定得到的价值最大性价比就是这堆金币的价值除以重量只需要把这些金币按性价比排序就行了最后在超出和未超出之间......
  • vue课程75 axios是只专注于网络请求的库
     <!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compatible"content="IE=edge"><metaname="viewport"conte......
  • 版本② axios 封装
    HttpRequestBase类1构造函数constructor(baseUrl){constbasePort=getUrlPort(baseUrl);this.baseUrl=baseUrl;this.baseUrlWithPort2=baseUrl.repla......
  • 封装axios
    importaxiosfrom'axios';//axios.defaults.timeout=5000;//响应时间//axios.defaults.withCredentials=true;//让请求头携带参数cookie//axios.defaults.b......
  • Axios
    AxiosAxios是一个基于promise网络请求库,作用于node.js和浏览器中。它是isomorphic的(即同一套代码可以运行在浏览器和node.js中)。在服务端它使用原生node.jshtt......
  • SQL1224 is returned during the execution of an SQL procedure
    SQL1224isreturnedduringtheexecutionofanSQLprocedurehttps://www.ibm.com/support/pages/sql1224-returned-during-execution-sql-procedureQue......
  • axios二次封装,mock前端模拟后端接口
    axios二次封装封装request,然后不用每次遇到接口就使用axios进行调用接口。封装一个基地址,然后每次调用接口的时候,只用写出来自己的函数方法就好。我们基于脚手架进行封装......
  • axios 请求
    完整文档官网文档html<inputtype="file"multipleid="files"><buttononclick="postAxios()">上传文件s</button><pid="files_progress"style="width:0px;heig......
  • CodeForces - 224D Two Strings
    Description:A subsequence oflength |x| ofstring s = s1s2... s|s| (where |s| isthelengthofstring s)isastring x = sk1sk2... sk|x| (1 ≤......
  • BZOJ 3224 普通平衡树 (BST+Treap)
    题目描述:您需要写一种数据结构(可参考题目标题),来维护一些数,其中需要提供以下操作:插入数值x。删除数值x(若有多个相同的数,应只删除一个)。查询数值x的排名(若有多个相同的数,应......