這篇文章主要介紹了微信小程式網路請求(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 } }) }
以上是微信小程式中的網路請求(post請求和get請求)的詳細內容。更多資訊請關注PHP中文網其他相關文章!