擷取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中文網其他相關文章!