首頁  >  文章  >  微信小程式  >  微信小程式中的網路請求(post請求和get請求)

微信小程式中的網路請求(post請求和get請求)

不言
不言原創
2018-06-27 11:38:434600瀏覽

這篇文章主要介紹了微信小程式網路請求(post請求,get請求)的相關資料,需要的朋友可以參考下

微信小程式網路請求

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
   }
  })
 }

以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!

相關推薦:

微信小程式request請求後台介面php的介紹

微信小程式的GET請求的介紹

以上是微信小程式中的網路請求(post請求和get請求)的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn