Add timestamp in Firestore documents

前端 未结 10 1013
旧巷少年郎
旧巷少年郎 2020-12-29 03:29

I\'m newbie to Firestore. Firestore docs says...

Important: Unlike \"push IDs\" in the Firebase Realtime Database, Cloud Firestore au

10条回答
  •  执念已碎
    2020-12-29 04:30

    Firestone method does not work. Use Timestamp from java.sql.Timestamp and don't cast to string.. Then firestone formats it properly. For example to mark a now() use:

    val timestamp = Timestamp(System.currentTimeMillis())
    

提交回复
热议问题