小程序的几种网络请求

在page页面中,我们要请求网络数据,就要进入page.js中的

onLoad生命周期中,发送网络请求

//发送最简单的get请求
wx.request({
    url:'路径',
    success:(res)=>{
      console.log(res)
    }  
})    

//get请求,但是携带参数
wx.request({
    url:'路径',
    data:{
     参数:“参数”
    } ,
    success:(res)=>{
      console.log(res)
    }
})

//post请求,并且携带参数
wx.request({
    url:'http://httpbin.org/post',
    method:'post',
    data:{
      name:'b-clouds',
      age: 18
    },
    success:function(res){
      console.log(res)
    }
})

 

posted @ 2020-06-19 15:41  大云之下  阅读(449)  评论(0编辑  收藏  举报
大云之下