Heim > Artikel > WeChat-Applet > WeChat-Applet-Netzwerkanfrage (Anfrage posten, Anfrage abrufen)
In diesem Artikel werden hauptsächlich relevante Informationen zu Netzwerkanfragen des WeChat Mini-Programms vorgestellt (Anfragen posten, Anfragen erhalten. Freunde in Not können sich auf
Netzwerkanfragen des WeChat Mini-Programms
beziehen).1.Post-Anfrage:
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-Anfrage
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 } }) }
Vielen Dank fürs Lesen, ich hoffe, es kann Ihnen helfen, vielen Dank für Ihre Unterstützung dieser Website!
Weitere Artikel zu WeChat-Applet-Netzwerkanfragen (Post-Anfragen, Get-Anfragen) finden Sie auf der chinesischen PHP-Website!