在 Firebase 实时数据库中,维护准确的时间戳对于排序、跟踪更改和确保数据完整性至关重要。通过数据库的控制面板添加新值时,您可能希望自动捕获当前日期和时间。本文介绍如何使用 ServerValue.TIMESTAMP 实现此目的。
最佳实践是使用 ServerValue.TIMESTAMP 将时间戳保存为 TIMESTAMP 数据类型。这确保了数据库在添加新值时自动设置时间戳。
DatabaseReference ref = FirebaseDatabase.getInstance().getReference(); Map map = new HashMap(); map.put("timestamp", ServerValue.TIMESTAMP); ref.child("yourNode").updateChildren(map);
检索时间戳时,它将存储为 Long 值。要以人类可读的格式获取日期和时间,可以使用以下方法:
public static String getTimeDate(long timestamp){ try{ DateFormat dateFormat = getDateTimeInstance(); Date netDate = (new Date(timestamp)); return dateFormat.format(netDate); } catch(Exception e) { return "date"; } }
编辑: 要在模型类中正确存储时间戳,您可以定义Map
public class YourModelClass { private Map<String, String> timestamp; @ServerTimestamp public void setTimestamp(Map<String, String> timeStamp) {this.timestamp= timestamp;} public Map<String, String> getTimestamp() {return timestamp;} }
另一种方法是在 Firebase 中创建一个返回当前服务器时间戳的云函数。然后,您可以从前端代码中检索此时间戳。
exports.currentTime = functions.https.onRequest((req, res) => { res.send({"timestamp":new Date().getTime()}) })
此方法提供了一种一致且可靠的方法来获取服务器时间戳,而无需用户交互。
以上是如何自动向 Firebase 实时数据库条目添加时间戳?的详细内容。更多信息请关注PHP中文网其他相关文章!