mongoose-timestamp:添加createdAt和updatedAt日期属性,这些属性会自动分配给最新的createupdate时间戳记

时间:2024-05-13 05:48:51
【文件属性】:

文件名称:mongoose-timestamp:添加createdAt和updatedAt日期属性,这些属性会自动分配给最新的createupdate时间戳记

文件大小:12KB

文件格式:ZIP

更新时间:2024-05-13 05:48:51

JavaScript

猫鼬时间戳插件 对于简单的插件这增加createdAt和updatedAt日期属性是那些获得自动分配到最近创建/更新时间戳。 安装 npm install mongoose-timestamp 用法 var timestamps = require ( 'mongoose-timestamp' ) ; var UserSchema = new Schema ( { username : String } ) ; UserSchema . plugin ( timestamps ) ; mongoose . model ( 'User' , UserSchema ) ; var User = mongoose . model ( 'User' , UserSchema ) 用户模型现在有createdAt和updatedAt属性,当您保存文件,它都会自动生成和更新。 var


【文件预览】:
mongoose-timestamp-master
----.travis.yml(120B)
----index.js(4KB)
----package.json(761B)
----test()
--------index_test.js(1KB)
--------custom_names_only_test.js(2KB)
--------index_find_update_test.js(1KB)
--------custom_names_types_options_test.js(2KB)
--------sub_document_test.js(3KB)
--------index_update_test.js(1KB)
--------custom_names_types_test.js(2KB)
--------touch_test.js(1KB)
----LICENSE(1KB)
----.gitignore(42B)
----README.md(4KB)

网友评论