function RequestUrl(url, data, method, success, fail, complete) { wx.request({ url: url, data: data ? data : {}, header: { ‘content-type‘: ‘application/json‘, ‘Accept‘: ‘application/json‘ }, method: method ? method : ‘GET‘, success: success ? success : function(){}, fail: fail ? fail : function(){}, complete: complete ? complete : function(){} })}
原文地址:https://www.cnblogs.com/studyh5/p/9949698.html
时间: 2024-10-09 00:57:45