文件名称:mongoose-history-log:将事件集合添加到架构
文件大小:3KB
文件格式:ZIP
更新时间:2024-06-08 23:44:22
JavaScript
猫鼬历史日志 将事件集合添加到架构 用法 模式设置: var mongoose = require ( 'mongoose' ) ; var mhl = require ( 'mongoose-history-log' ) ; var schema = new mongoose . Schema ( { name : String } ) ; mhl ( schema ) ; 这会将history属性添加到作为对象数组的架构中: [ { time : { type : Date , default : Date . now } , status : String , meta : { } } ] meta属性允许您将任意复杂的对象附加到history元素上。 首次保存文档时,它将自动在当前时间添加一个{ status : "created" }记录。
【文件预览】:
mongoose-history-log-master
----index.js(449B)
----package.json(646B)
----LICENSE(1KB)
----.gitignore(526B)
----README.md(868B)