在wx.request的complete输出下返回内容看看咯
小游戏request后没有response已经设置好了合法域名(https的) wx.request POST 时,request可以出去,在服务端也接收到了POST数据,但是客户端接收不到response,没有报错信息,有遇到类似问题的吗? 另,如果不校验域名,则可以正常进行网络请求。 以下为代码段 static getToken(param = { url: String, tempCode: String, response: Function, complete: Function }) { let isSuccess = false wx.request({ url: param.url, data: { noncestr: Date.now(), code: param.tempCode }, method: 'POST', success: (result) => { isSuccess = true if (typeof param.response === "function") param.response(result.data) }, complete: () => { if (typeof param.complete === 'function') param.complete(isSuccess) } }) }
2018-07-12这个需要你的开发者来告诉你那些参数才行哦
不会填,这个咋填啊消息推送服务器置不会填,咋办啊?又不懂代码
2018-06-19