小程序的get和post请求头的区别

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序的get和post请求头的区别相关的知识,希望对你有一定的参考价值。

小程序在使用wx.request()接口 时 header 请求头默认是这样的

 

wx.request({
  url: ‘test.php‘, //仅为示例,并非真实的接口地址
  data: {
     x: ‘‘ ,
     y: ‘‘
  },
  header: {
      ‘content-type‘: ‘application/json‘ // 默认值
  },
  success: function(res) {
    console.log(res.data)
  }
})

 

  当然如果没设置请求类型是能请求到数据的,但是如果设置为POST请求,再使用 ‘content-type‘: ‘application/json‘ // 默认值 就坑爹了,这样是请求不到想要的数据的。此时要更改请求头

 

wx.request({
  url: ‘test.php‘, //仅为示例,并非真实的接口地址
  data: {
     x: ‘‘ ,
     y: ‘‘
  },
  method:"POST",
  header: {
       "Content-Type": "application/ x - www - form - urlencoded" //post请求设置
  },
  success: function(res) {
    console.log(res.data)
  }
})

 

  这样就能成功请求到数据了。

 

 

 

以上是关于小程序的get和post请求头的区别的主要内容,如果未能解决你的问题,请参考以下文章

springboot中使用restTemplate发送带参数和请求头的post,get请求

面试小问题:get与post两种请求方法的区别

面试小问题:get与post两种请求方法的区别

钉钉小程序http post 请求

小程序的get和post需要注意的地方

get请求和post请求区别