Home > Article > WeChat Applet > Network requests in WeChat applet (post request and get request)
This article mainly introduces the relevant information about WeChat Mini Program network requests (post requests, get requests). Friends in need can refer to
WeChat Mini Program Network Requests
1.Post request:
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 request
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 } }) }
The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
Introduction to WeChat applet request request backend interface php
WeChat applet GET request introduce
The above is the detailed content of Network requests in WeChat applet (post request and get request). For more information, please follow other related articles on the PHP Chinese website!