網(wǎng)站優(yōu)化價(jià)格新河seo怎么做整站排名
目錄
一、小程序中網(wǎng)絡(luò)數(shù)據(jù)請(qǐng)求的限制
?二、發(fā)起get請(qǐng)求
三、發(fā)起post請(qǐng)求
一、小程序中網(wǎng)絡(luò)數(shù)據(jù)請(qǐng)求的限制
具體有兩個(gè)限制:
(1)只能請(qǐng)求HTTPS類型的接口
(2)必須將接口的域名添加到信任列表中,在調(diào)試的時(shí)候選擇不校驗(yàn)設(shè)置
?二、發(fā)起get請(qǐng)求
<button bind:tap="handl" type="primary">點(diǎn)擊</button>
//js文件中handl(e){wx.request({url: 'https://www.baidu.com',method:'GET',data:{name:'gq'},success:(res)=>{console.log(res.data)}})},
三、發(fā)起post請(qǐng)求
<button bind:tap="handl" type="primary">點(diǎn)擊</button>
handl(e){wx.request({url: 'https://www.baidu.com',method:'POST',data:{name:'gq'},success:(res)=>{console.log(res.data)}})},
?