小程序
小游戏
企业微信
微信支付
扫描小程序码分享
updateManager.applyUpdate() 这个是强制重启更新最新版本,只需要重启小程序就可以了,这个用不到。
只需要可以让小程序重启的代码,如果用户登录了超时,或者长期出现在手台后台,被再次调到前台使用的时候 ,我想让小程序重启一下(一定要重启),刷新获取的时间等。哪位大哥帮忙看下。
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
试试https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.exitMiniProgram.html
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
if (xxxdate1 > sjtime1) { //云函数读取的时间应该 等于或者小于 手机端时间
wx.showToast({
icon: 'error',
title: '校时,重启程序',
})
wx.restartMiniProgram() //这里这样写可以? 没有反应
console.log('系统时间不一致',sjtime1)
}
看看这个:
https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.restartMiniProgram.html
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
试试https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.exitMiniProgram.html
if (xxxdate1 > sjtime1) { //云函数读取的时间应该 等于或者小于 手机端时间
wx.showToast({
icon: 'error',
title: '校时,重启程序',
})
wx.restartMiniProgram() //这里这样写可以? 没有反应
console.log('系统时间不一致',sjtime1)
}
看看这个:
https://developers.weixin.qq.com/minigame/dev/api/navigate/wx.restartMiniProgram.html