我在Date()
中保存AsyncStorage
,当我打开应用时,想要将其与当前日期进行比较,并检查是否至少传递了n
分钟。我在论坛上发现了一个类似的topic并试图跟随它
我写了类似
的内容 try {
const lastDate = await AsyncStorage.getItem('lastDate')
if (lastDate !== null){
const currentDate = new Date()
console.log(currentDate.getTime() - lastDate.getTime())
}
但我收到一个错误,告诉我getTime()
是undefined
。