【Flutter×Firebase】Firestoreのtimestampデータを取得したり、登録したりする
こんにちは。
①FirestoreからTimestamp型のデータを取得して、画面に表示する
②画面に入力された日付を、Firestoreに登録する
これで少しつまづいたので、メモ程度に残しておきます。
FirestoreからTimestamp型のデータを取得して、画面に表示する
Firestoreに「created_at」というカラムでTimestamp型で登録している場合。
ポイント
- 一回、Date型に変換してから文字列に変換する
例はこんな感じです
このコードでは例えば「2020/07/24」という文字が出力されます。
Text(
DateFormat("yyyy/MM/dd").format(_when.toDate()).toString(),
style: TextStyle(
fontSize: 16.0,
color: Colors.black
),
),
FirestoreにTimestamp型のデータを登録する
ポイント
- DateTime型のまま登録してOK
変数「created_at」にDateTime型を入れているとして...
Firestore.instance.collection("activelists").add({
"created_at": _created_at,
});
終わりに
FirestoreのTimestamp型の扱い方が分からなかったので、色々調べながら扱えるようになりました。
つまづいた方はぜひ参考にしてみてください。
Author And Source
この問題について(【Flutter×Firebase】Firestoreのtimestampデータを取得したり、登録したりする), 我々は、より多くの情報をここで見つけました https://qiita.com/n_oshiumi/items/a970ad00aaca4fd3295d著者帰属:元の著者の情報は、元の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 .