wx.request({
? ? ? ? url: 'http://xxx', // 僅為示例,并非真實的接口地址
? ? ? ? method: 'post',
? ? ? ? data: {
? ? ? ? //所需要參數(shù)
? ? ? ? //其中that.data.username是在wx.request請求外就寫好的數(shù)據(jù) that.data.password也一樣
? ? ? ? ? username: that.data.username,
? ? ? ? ? password: that.data.password
? ? ? ? },
//請求頭? 注:在get請求中可有可無焕檬,但post需要
? ? ? ? header: {
? ? ? ? ? 'content-type': 'application/x-www-form-urlencoded' // 默認值
? ? ? ? },
? ? ? ? success(res) {
console.log(res.data)
? ? ? ? }
? ? ? })
————————————————
版權聲明:本文為CSDN博主「不知名小朋友」的原創(chuàng)文章浇衬,遵循CC 4.0 BY-SA版權協(xié)議旭愧,轉載請附上原文出處鏈接及本聲明究反。
原文鏈接:https://blog.csdn.net/m0_56685900/article/details/123102795