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