捕获 Firebase 实时数据库插入的当前日期/时间
在 Firebase 实时数据库中,通常需要记录数据插入的时间戳跟踪目的。这可以通过利用 ServerValue.TIMESTAMP 来实现,它将当前服务器时间作为时间戳存储在数据库中。
实现
设置当前日期/时间通过控制面板向数据库添加新值,请使用以下命令code:
DatabaseReference ref = FirebaseDatabase.getInstance().getReference(); Map map = new HashMap(); map.put("timestamp", ServerValue.TIMESTAMP); ref.child("yourNode").updateChildren(map);
检索
检索时间戳时,Firebase 会将其存储为 Long。要将检索到的时间格式化为字符串,请使用以下方法:
public static String getTimeDate(long timestamp) { DateFormat dateFormat = getDateTimeInstance(); Date netDate = (new Date(timestamp)); return dateFormat.format(netDate); }
模型类
为了映射模型类以正确处理时间戳,请确保它有一个这样的字段:
private Map<String, String> timestamp;
云函数方法
或者,考虑在 Cloud Functions for Firebase 中编写一个函数来获取服务器时间戳,而无需用户交互:
exports.currentTime = functions.https.onRequest((req, res) => { res.send({"timestamp":new Date().getTime()}) })
通过使用 ServerValue.TIMESTAMP 或 Cloud Functions 方法,在将值插入 Firebase 实时数据库时,您可以可靠地捕获当前日期/时间,为跟踪和分析目的提供有价值的信息。
以上是将数据插入 Firebase 实时数据库时如何获取当前日期和时间?的详细内容。更多信息请关注PHP中文网其他相关文章!