目录
一、小程序中网络数据请求的限制
二、发起get请求
三、发起post请求
一、小程序中网络数据请求的限制
具体有两个限制:
(1)只能请求HTTPS类型的接口
(2)必须将接口的域名添加到信任列表中,在调试的时候选择不校验设置
二、发起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)}})},
三、发起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)}})},