- 部分用户打开网页提示err_connection_reset错误,复制链接在浏览器中可以正常打开?
最近部分用户在微信端打开提示err_connection_reset[图片],但是在手机浏览器有好像可以, 大部分都能正常使用
2023-07-29 - 外卖类小程序 引入了小程序支付 ,主体具有餐饮的经营范围 可以审核通过吗?
外卖类小程序 引入了小程序支付 主体 经营范围: [图片] 自身不做餐饮,只是 给入驻的商家配送 请问可以审核通过吗
2021-08-19 - 企业微信会话存档chatdata:[] 一直为空
{"errcode":0,"errmsg":"ok","chatdata":[]} 已经确认生成的公钥
2021-02-19 - 在其它公司的公众号上添加菜单链接自己公司的url可以吗?
我司想在合作伙伴公司的公众号上添加菜单,url中包含appid 之类的授权信息,这样可以嘛?需要怎么做
2020-04-30 - updateManager.applyUpdate() 会清除storage吗?
真机拿不到,开发者工具可以。方法如下:已经在app.js的onLoad中调用。 autoUpdate: function () { var self = this if (wx.canIUse('getUpdateManager')) { const updateManager = wx.getUpdateManager() // 检查小程序是否有新版本发布 updateManager.onCheckForUpdate(function (res) { // 请求完新版本的信息回调 if (res.hasUpdate) { wx.showModal({ title: '更新提示', content: '检查到新版本,是否下载新版本并重启小程序?', success: function (res) { if (res.confirm) { // 下载 self.downloadAndUpdate(updateManager) } else if (res.cancel) { // 点击取消,做强制更新操作 wx.showModal({ title: '温馨提示', content: '必须强制更新哦,旧版本无法正常使用', showCancel: false,//隐藏取消按钮 confirmText: '确定更新', success: function (res) { if (res.confirm) { // 再次调用下载,并重启 self.downloadAndUpdate(updateManager) } } }) } } }) } }) } else { // 增加用户体验,给出友好提示 wx.showModal({ title: '提示', content: '当前微信版本过低,无法使用该功能,请升级后重试。' }) } }, /** * 下载新版本并重启 */ downloadAndUpdate: function (updateManager) { var self = this wx.showLoading(); // 监听小程序有版本更新事件,客户端主动触发 updateManager.onUpdateReady(function () { wx.hideLoading(); // 新版本下载好,调用applyUpdate updateManager.applyUpdate() }) // 监听小程序更新失败事件 updateManager.onUpdateFailed(function () { wx.showModal({ title: '已经有新版了哦', content: '请你删除当前小程序,进行升级哦' }) }) }
2020-04-16 - 小程序版本更新后,转发给用户之后,用户打开为什么一直疯狂跳转页面?
微信小程序进入后需要授权,也可以取消,近期发现版本更新后转发给用户页面,之前使用过小程序的用户打开后一直跳转,没使用过的正常,这是什么情况,请问怎么解决呢?
2020-04-15 - 需求是在微信浏览器进行微信支付,不让用户关注微信公众号,采取哪种支付方式呢?
在微信浏览器进行微信支付,不让用户关注微信公众号,采取哪种支付方式呢?
2020-03-24