1. 程式人生 > >微信小程式 post git 的請求坑

微信小程式 post git 的請求坑

第一微信端post git請求最大的區別就是

header(這個位置);mestor

wx.request({ url: 'https://didu2.didu86.com/photography/index.php/Home/User/userLogin', //僅為示例,並非真實的介面地址 method: "post", data: {     openid: openid,     name: 123,     wxurl: 123 }, header: { "Content-Type": "application/x-www-form-urlencoded" }, success: function
(res) {     console.log(res) let result = res.data; if (result.length != 0) { wx.setStorageSync('user', result); } else {
} }})

post方法的是

header: { "Content-Type": "application/x-www-form-urlencoded" },

get方法的是

method: "get",header: { 'content-type': "application/json"
},