- 开发者工具打开小程序无请求?
打开开发者工具开发,发现突然显示不了页面,也没有请求,但是在真机调试时可以显示页面和后台数据,这时什么情况
2020-03-25 - app.json配置正确,页面js page也对,但是页面打不开?
报错如下: Page is not constructed because it is not found. "pages": [ "pages/index/index", "pages/orderlist/orderlist", "pages/search/search", "pages/UserCenter/UserCenter", //这个页面 "pages/personaldata/personaldata"] x下图为usercenter的js代码 [图片]
2020-03-05 - 获取用户openid内部操作的异常?
我已经通过请求把临时的code拿到了,然后准备根据code去请求openid,但是结果为获取openid内部操作异常 ,这个过程事用的自己后台写的接口,是这个接口的原因吗
2020-03-05 - wx.chooseImage不执行?
methods: { getConfig() { 请求配置信息 this.ajax({ url: "api/wechat/auth", method: "POST", data: { url: window.location.href }, success: r => { this.config = r.data; this.wxConfig(); } }); }, wxConfig() { var that = this; console.log(that.config.signature); wx.config({ 配置相关 // debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,测试完成后需要关闭。 appId: that.config.appId, // 必填,公众号的唯一标识 timestamp: that.config.timestamp, // 必填,生成签名的时间戳 nonceStr: that.config.nonceStr, // 必填,生成签名的随机串 signature: that.config.signature, // 必填,签名(加密后,下文有实现) jsApiList: that.config.jsApiList // 必填,需要使用的JS接口列表,开发文档上有所有接口名称,根据需要选用就好。 }); wx.error(function(res) { alert("出错了:" + res.errMsg); //这个地方的好处就是wx.config配置错误,会弹出窗口哪里错误,然后根据微信文档查询即可。 }); }, upload() { 点击事件 调用wx.chooseImage没反应 能打印111 var that = this; console.log(111); wx.chooseImage({ count: 1, // 默认9 sizeType: ["original", "compressed"], // 指定是原图还是压缩图,默认都有 sourceType: ["album", "camera"], // 指定来源是相册还是相机,默认都有 success: function(res) { console.log(res); }})
2020-02-11