微信小程式 post git 的請求坑
阿新 • • 發佈:2019-01-10
第一微信端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} }})
post方法的是
header: { "Content-Type": "application/x-www-form-urlencoded" },get方法的是
method: "get",header: { 'content-type': "application/json"