1. 程式人生 > >wx.request的POST方法的引數傳輸伺服器接收不到的bug。

wx.request的POST方法的引數傳輸伺服器接收不到的bug。

wx.request post 的 content-type 預設為 'application/json'

   如果伺服器沒有用到 json 解釋的話,可以把 content-type 設定回 urlencoded。

   wx.request({

     ....

     method: "POST",

     header: {

       "content-type": "application/x-www-form-urlencoded"

     },

     ...

   })

終於可以post提交了,大家不要按照官網的文件寫,也不用轉格式,修改header即可。