请问解决了吗?
为什么请求POST变成SThttps://developers.weixin.qq.com/miniprogram/dev/api/network/request/wx.request.html Request method 'ST' not supported 发送请求 频繁出现请求方法异常 POST 变ST 使用其他API工具未出现问题
2023-02-20[Event] 21 listeners of event onBeforeUnloadPage_-1080511058 have been added, possibly causing memory leak. 报这个警告
能检测到有新版本,但没有成功、失败回调以前是可以正常收到回调,现在能检查到有新版本,但是不执行成功回调,也不执行失败回调。 手机型号:荣耀v30 const updateManager = wx.getUpdateManager() updateManager.onCheckForUpdate(function (res) { // 请求完新版本信息的回调 console.log(res.hasUpdate) }) updateManager.onUpdateReady(function () { wx.showModal({ title: '更新提示', content: '新版本已经准备好,是否重启应用?', success: function (res) { if (res.confirm) { // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 updateManager.applyUpdate() } } }) }) updateManager.onUpdateFailed(function () { // 新版本下载失败 })
2021-09-17以前会触发,最近就触发不了了,解决了吗?
能检测到有新版本,但updateManager.onUpdateReady不执行,有遇到的吗?if (wx.canIUse('getUpdateManager')) { const updateManager = wx.getUpdateManager(); updateManager.onCheckForUpdate((res) => { console.log('更新检测:'+res.hasUpdate); if (res.hasUpdate) { updateManager.onUpdateReady(() => { console.log('更新完成'); wx.showModal({ title: '更新提示', content: '新版本已经准备就绪,是否需要重新启动应用~', success: (res) => { if (res.confirm) { updateManager.applyUpdate() } } }); }); updateManager.onUpdateFailed(() => { wx.showModal({ title: '已有新版本上线', content: '小程序自动更新失败,请删除该小程序后重新搜索打开哟~', }); }); } }); } else { wx.showModal({ title: '提示', content: '当前微信版本过低,无法使用该功能,请更新到最新的微信后再重试~', }); }
2021-09-10