文件名称:mongoose-timezone:Mongoose插件以标准化存储日期时区
文件大小:58KB
文件格式:ZIP
更新时间:2024-02-24 07:15:06
nodejs mongodb date mongoose timezone
猫鼬时区 一个Mongoose插件,用于标准化存储日期时区。 默认情况下,mongo日期以UTC格式存储,使用高级聚合查询或从其他时区不同的系统中检索这些日期时,此行为可能会导致问题。 mongoose-timezone基本上将当前时区偏移量添加到存储之前的日期,并在检索数据时删除偏移量。 这样,日期就可以在数据库和应用程序中保持比例。 安装 npm install mongoose-timezone-保存 用法 const mongoose = require ( 'mongoose' ) ; const timeZone = require ( 'mongoose-timezone' ) ; const Schema = new mongoose . Schema ( { date : Date , subDocument : { subDate : { type : Date , } , } , } ) ; // If no path is given, all date fields will
【文件预览】:
mongoose-timezone-master
----.travis.yml(383B)
----.eslintrc.yml(304B)
----index.js(2KB)
----test.js(2KB)
----package.json(917B)
----LICENSE(1KB)
----package-lock.json(209KB)
----.npmignore(134B)
----.gitignore(812B)
----.codeclimate.yml(191B)
----README.md(3KB)
----.eslintignore(0B)
----.editorconfig(225B)
----.gitattributes(14B)