이 글에서는 주로 WeChat Mini 프로그램 네트워크 요청(요청 게시, 요청 받기)에 대한 관련 정보를 소개합니다. 도움이 필요한 친구는
WeChat Mini 프로그램 네트워크 요청
을 참조하세요.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 중국어 웹사이트를 주목하세요!