ホームページ > 記事 > WeChat アプレット > WeChat アプレット ネットワーク リクエスト (post リクエスト、get リクエスト)
この記事は主にWeChatミニプログラムネットワークリクエスト(リクエストの投稿、リクエストの取得)に関する関連情報を紹介します
WeChatミニプログラムネットワークリクエスト
1.
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 } }) }
読んでいただきありがとうございます。皆さんのお役に立てれば幸いです。このサイトをサポートしていただきありがとうございます!
その他の WeChat アプレット ネットワーク リクエスト (投稿リクエスト、取得リクエスト) 関連記事については、PHP 中国語 Web サイトに注目してください。