是不是整个app.js这个文件里都不支持post方法啊
wx.login 里只支持get请求wx.login({ success(res) { if (res.code) { // 调用服务端接口,获取openId console.log(res.code); wx.request({ url: vm.oobusCenter + vm.appletLogin, data: { code: res.code }, header: { 'content-type': 'application/json' // 默认值 }, success(appletLoginRes) { console.log(appletLoginRes.data); } }); } else { console.log('登录失败!' + res.errMsg) } } }); wx.login 里边嵌套的 wx.request 只支持get请求,不支持post请求
2019-06-08等了好久之后会说网络无法连接,但是我上网是正常的 [图片]
微信开发者工具无法使用打开后一直显示一下界面,根本无法进入,还说是稳定版 [图片]
2019-06-07就是微信认证
getPhoneNumber 该APPID 没有权限[图片] https://developers.weixin.qq.com/miniprogram/dev/api/getPhoneNumber.html 注意:目前该接口针对非个人开发者,且完成了认证的小程序开放。 这里指的认证小程序开放,是指哪里的认证? 是指微信认证吗?小程序是通过公帐打款验证了,还需要通过什么认证?请大神指点。[图片]
2018-06-05