美文网首页
微信版axios

微信版axios

作者: 我是走A牧 | 来源:发表于2020-08-14 08:39 被阅读0次

github地址:
https://github.com/wangqiang1122/wx-axios

支持基本的请求功能及拦截器功能 demo

var h = j.create({
  baseUrl: 'xxxxx'
})
h.Interceptor.request.use(function (res) {
  // 请求拦截器
  return res
})
h.Interceptor.response.use(function (res) {
  // 返回拦截器
  return res.data
})
h.post('/roleService/getUserPermission.xco',
  { module_code: 'task_index' }).then((res) => {
    console.log(res);
  })

后面会继续更新 添加上传文件 如有任何问题请提交issue

相关文章

网友评论

      本文标题:微信版axios

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