Cloud Firestore でサーバーの現在時刻を保存する
概要
Firebase の Cloud Firestore でサーバーの現在時刻を保存する方法を調べたので、ご紹介します。
Firestore でサーバーの現在時刻を保存するサンプルコード
結論としては、 require("firebase-admin").firestore.FieldValue.serverTimestamp()
を利用すれば良いです。
以下、Node.js のサンプルコードです。
const admin = require("firebase-admin");
const db = admin.firestore();
const FieldValue = admin.firestore.FieldValue;
let docRef = db.collection('objects').doc('some-id');
let updateTimestamp = docRef.update({
timestamp: FieldValue.serverTimestamp()
});
以上、Cloud Firestore でサーバーの現在時刻を保存したい、現場からお送りしました。
参考情報
Author And Source
この問題について(Cloud Firestore でサーバーの現在時刻を保存する), 我々は、より多くの情報をここで見つけました https://qiita.com/codenote_net/items/ea7180742c9717f8ebe5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .