使用react native来获取两分钟之间的差异

时间:2018-02-12 13:24:43

标签: javascript reactjs react-native

我在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

0 个答案:

没有答案