微信小程序-使用 wx.request() 报错 GET 400 (Bad Request)

使用 wx.request() 报错 GET 400 (Bad Request)

在浏览器访问接口是有效的,一用 wx.reqeust() 就报 GET 400 (Bad Request) 错误
图片

可以用这个方法:wx.request传入的对象参数中的head改一下

wx.request({
  header: {
  // "Content-Type":"application/json"  请求会返回400(bad request)
  //这里修改json为text
  "Content-Type": "application/text"
  },
    url:your_url;
})

你可能感兴趣的:(微信小程序)