Mongooseでタイムスタンプを利用する
1527 ワード
タイムスタンプとは
ある値が作られた時間を記録するもの。
サーバー側からもクライアント側からも使用することができる。
Mongooseにタイムスタンプを設定
Mongooseの設定から、オプションでタイムスタンプを自動作成させることができる。
<公式ドキュメント> https://mongoosejs.com/docs/guide.html#timestamps
const mongoose = require('mongoose')
const userSchema = new mongoose.Schema({
{..},
{timestamps: true}
})
↓
新しくuserShemaを用いてuserを作成するたびに、
「createdDt:"...(時刻)"」と「updatedAt:"...(時刻)"」
が作成される。
Author And Source
この問題について(Mongooseでタイムスタンプを利用する), 我々は、より多くの情報をここで見つけました https://qiita.com/Molly95554907/items/970048a9e2a61915449d著者帰属:元の著者の情報は、元の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 .