axios catch错误

发布于 2022-09-06 21:15:28 字数 888 浏览 17 评论 0

    this.axios({
      method: 'POST',
      url: URL,
      data: {
        "mobile": tel,
        "auth_code": code,
        "lngLat": this.lngLat,
        "regSource": 'H5',
        "frc": "H5",
        "ref": this.ref
      },
      headers: {
        'appId': config.config.APPID,
        'token': this.token
      }
    })
      .then(function (response) {
        console.log(response)

      })
      .catch(function (error) {
        console.log(error)
      });
      
      
      console.log(error)里边输出
      
      
    Error: Request failed with status code 400
    at createError (createError.js?16d0:16)
    at settle (settle.js?db52:18)
    at XMLHttpRequest.handleLoad (xhr.js?ec6c:77)
    at _this.(anonymous function) (chrome-        extension://jegnjmcegcpodciadcoeneecmkiccfgi/enablecrossorigin.js:81:55)
    
    
    这样写哪里错了吗,为什么catch(err)啊

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

审判长 2022-09-13 21:15:29

楼上说的很对,主要看后台要求post请求可以接受什么数据,axios中post默认请求数据格式是application/json,如果后台不支持可以
设置请求头格式
在config配置headers: {'X-Requested-With':'XMLHttpRequest'},
格式化数据
并引入axios里面内置的qs,不需要重新下载

import qs from 'qs'
this.axios({
      method: 'POST',
      url: URL,
      data: qs.stringify({
        "mobile": tel,
        "auth_code": code,
        "lngLat": this.lngLat,
        "regSource": 'H5',
        "frc": "H5",
        "ref": this.ref
      }),
      headers: {
        'appId': config.config.APPID,
        'token': this.token,
        'X-Requested-With':'XMLHttpRequest'
      }
    })
话少心凉 2022-09-13 21:15:29

语法格式错误,估计传的参数和服务端要求的不一致造成的。

一生独一 2022-09-13 21:15:29

看你后台需要接受什么格式的数据

oО清风挽发oО 2022-09-13 21:15:29

axios拦截器里面,设置content-type了吗?
后台接收content-type:application/json;还是application/x-www-form-urlencoded或者别的,
400后台应该是都没收到你的请求

锦欢 2022-09-13 21:15:28

post 的data 要 JSON.stringify(bodyData)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文