wx.getBackgroundFetchData()
wx.getBackgroundFetchData({
fetchType: ‘periodic’,
success(res) {
console.log(res.fetchedData); // 缓存数据
console.log(res.timeStamp) // 客户端拿到缓存数据的时间戳
}
})
始终返回缓存数据hello world 1
wx.getBackgroundFetchData({
fetchType: ‘periodic’,
success(res) {
console.log(res.fetchedData); // 缓存数据
console.log(res.timeStamp) // 客户端拿到缓存数据的时间戳
}
})
始终返回缓存数据hello world 1