如何利用wx.request进行post请求

1,method 是  get  方式的时候,会将数据转换成 query string

  method 为 post 时,header为{"Content-Type": "application/x-www-form-urlencoded"}会将数据转换成 query string

  method 为 post 时,header为{"Content-Type":"application/json"} 的数据,会对数据进行 JSON 序列化

原文地址:https://www.cnblogs.com/wskb/p/11686067.html