遇到相同问题, 但是我是在安卓才能复现,在开发者工具不能
canvasToTempFilePath当view为hidden状态下会不触发当wxml下用hidden来隐藏标签时,画板会生成也会触发回调函数,但是会不触发下面的 wx.canvasToTempFilePath,经测试可复现,不信自己可以试试。 context.draw(false, function () { console.log(3434); wx.canvasToTempFilePath({ canvasId: 'mycanvas', width: 662, height: 1018, destWidth: 662, destHeight: 1018, success(res) { console.log(res.tempFilePath); that.setData({ imgpath: res.tempFilePath, }) wx.hideLoading() }, fail: function (res) { console.log(res); wx.hideLoading() } }, that);
2020-10-20遇到同样问题,看来是没办法好好解决了
小程序webview手机端如何清理缓存在ios和Android上在小程序 webview中打开一个网页,网页更新了(在浏览器和微信聊天界面中打开确定过网页已经更新),但是在小程序中打开的还是之前的那个网页, 请问这种情况怎么清理缓存?
2019-12-12