wx.setBackgroundFetchToken({
token: '123456789',
})
数据与拉取成功,但是wx.getBackgroundFetchData里面没有数据
wx.getBackgroundFetchData({
fetchType: 'periodic',
success(res) {
console.log("1=====",res.fetchedData) // 缓存数据
console.log("2=====",res.timeStamp) // 客户端拿到缓存数据的时间戳
console.log("3=====",res.path) // 页面路径
console.log("4=====",res.query) // query 参数
console.log("5=====",res.scene) // 场景值
}
})
fail(res){
console.log("6===== 失败",res.errMsg)
},
报错:getBackgroundFetchData:fail getBackgroundFetchData:fail data not found
看看接口返回是正常的么
提示没发现数据