如题,在小程序里打开文件然后查看完文件后返回,小程序页面刷新了,我现在返回的页面是个表单,刷新了表单已填写的数据就没了。请问一下小程序查看文档后有不刷新页面的属性设置吗?
网友回复:
你好,问题未复现。请提供一下出现问题的机型和微信版本,以及能复现问题的简单代码示例。
你好,所有的机型都会有这个问题呀,我打开了文件之后返回,页面就刷新了
wx.downloadFile({
url: url,
success: function (res) {
let path = res.tempFilePath
console.log(path)
if(typeof op.title === 'string'){
wx.setNavigationBarTitle({
title: '返回' || op.backText
})
}
wx.openDocument({
filePath: path,
success: function (res) {
if(typeof op.title === 'string'){
wx.setNavigationBarTitle({
title: op.title
});
}
typeof op.success === 'function' && op.success(res);
},
fail: function (err) {
console.log(err)
_this.hideToast('loading')
typeof op.fail === 'function' && op.fail(err)
}
})
},
fail(err) {
typeof op.fail === 'function' && op.fail(err)
}
})