欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序 网络请求(post请求,get请求)

程序员文章站 2022-06-12 23:43:09
微信小程序 网络请求 1.post请求: onload: function() { that = this; wx.request( {...

微信小程序 网络请求

1.post请求:

onload: function() { 
  that = this; 
  wx.request( { 
   url: "url", 
   header: { 
    "content-type": "application/x-www-form-urlencoded" 
   }, 
   method: "post", 
   data: {}, 
   complete: function( res ) { 
    console.log(res.data)
    }); 
    if( res == null || res.data == null ) { 
     console.error( '网络请求失败' ); 
     return; 
    } 
   } 
  }) 
 }, 

2.get请求

onload: function () {
  console.log('onload')
  var that = this
   wx.request({
   url: 'http://json.bmbstack.com/cinemalist',
   data: {},
   method: 'get', // options, get, head, post, put, delete, trace, connect
    header: {
   'accept': 'application/json' 
    }, // 设置请求的 header
   success: function(res){
    that.data.items= res.data
   },
   fail: function() {
    // fail
   },
   complete: function() {
    // complete
   }
  })
 }

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!