在开发者工具中勾选“开启数据预拉取”后,没能正常获取到数据,而是提示这个错误
点击查看文档,会直接去到数据预拉取,完全不知道从何入手去修复这个问题
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/pre-fetch.html
但是正常真机调试的时候又不会有任何问题,能够正常获取数据,正式版也能正常获取数据。
wx.setBackgroundFetchToken({
token: 'xxxxxxx'
})
console.log("getBackgroundFetchData")
wx.getBackgroundFetchData({
fetchType: 'pre',
success(res) {
_this.preFeatchData = res.fetchedData;
console.log(res.timeStamp) // 客户端拿到缓存数据的时间戳
console.log(res.path) // 页面路径
console.log(res.query) // query 参数
console.log(res.scene) // 场景值
}
})
你好,反馈已收到,我们核实下,有进展会同步。