- 代码更新后,IOS版本不提示更新,更新不了新版本,为什么?
代码更新后,IOS版本不提示更新,更新不了新版本,为什么?我用web端的微信打开小程序是正常的,就是我苹果手机没有提示,怎么办? update() { if (wx.canIUse('getUpdateManager')) { const updateManager = wx.getUpdateManager(); updateManager.onCheckForUpdate(function (res) { console.log('onCheckForUpdate====', res) // 请求完新版本信息的回调 if (res.hasUpdate) { console.log('res.hasUpdate====') updateManager.onUpdateReady(function () { wx.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success: function (res) { console.log('success====', res) // res: {errMsg: "showModal: ok", cancel: false, confirm: true} if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate() } } }); }); updateManager.onUpdateFailed(function () { // 新的版本下载失败 wx.showModal({ title: '已经有新版本了哟~', content: '新版本已经上线啦~,请您删除当前小程序,重新搜索打开哟~' }); }); } }); } }
2024-12-13 - 我并不想获取用户的其他信息,怎么区分用户?
我是一个个人开发者,我开发的小程序作为工具就是自己用的,但是有朋友看到也想用,我并不想收集用户其他信息,比如我现在设计一个喂奶记录功能,原本我自己用就没事,但是其他人想用就回有记录混在一起,我想不同人,进来可以看到自己增加的记录,但是不通过openId这种有其他的方式吗?
2024-10-12 - 主体负责人手机号码不允许被多人使用?
我从来都没有备案过信息,今天用自己的信息要备案一个小程序,结果提示这个信息,如果我备案过,请问我怎么查询我之前备案的信息
2024-09-20