小程序
小游戏
企业微信
微信支付
扫描小程序码分享
上传新版本审核 是不是上传设置的1.0.0版本号不能变 用户才能打开小程序就能自动更新
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
要自动更新得调用api更新,其余的都是不确定性更新的
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
用这段代码检测更新
if (wx.getUpdateManager) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
})
updateManager.onUpdateReady(function () {
updateManager.applyUpdate()
wx.showModal({
title: '更新提示',
content: '新版本已下载完成,是否重启更新?',
success: function (res) {
if (res.confirm) {
}
描述不是很清楚,版本号不能变?。更新有对应的API的。文档有
关于更新的问题请阅读文档运行机制:https://developers.weixin.qq.com/miniprogram/dev/framework/operating-mechanism.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
要自动更新得调用api更新,其余的都是不确定性更新的
用这段代码检测更新
if (wx.getUpdateManager) {
const updateManager = wx.getUpdateManager()
updateManager.onCheckForUpdate(function (res) {
})
updateManager.onUpdateReady(function () {
updateManager.applyUpdate()
wx.showModal({
title: '更新提示',
content: '新版本已下载完成,是否重启更新?',
success: function (res) {
if (res.confirm) {
updateManager.applyUpdate()
}
}
})
})
}
描述不是很清楚,版本号不能变?。更新有对应的API的。文档有
关于更新的问题请阅读文档运行机制:https://developers.weixin.qq.com/miniprogram/dev/framework/operating-mechanism.html