Mongoose provide access to previous value of property in pre('save')

Mongoose allows you to configure custom setters in which you do the comparison. pre(‘save’) by itself won’t give you what you need, but together:

schema.path('name').set(function (newVal) {var originalVal = this.name;if (someThing) {this._customState = true;}
});
schema.pre('save', function (next) {if (this._customState) {...}next();
})

或者

var Person = new mongoose.Schema({name: {type: String,set: function(name) {this._previousName = this.name;return name;}
});Person.pre('save', function (next) {var previousName = this._previousName;if(someCondition) {...}next();
});

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/415336.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

前端学习(2644):懂代码之header表头页之折叠功能

第一步 header.vue <!-- 折叠按钮 --><div class"collapse-btn" click"collapseChage"><i v-if"!collapse" class"el-icon-s-fold"></i><i v-else class"el-icon-s-unfold"></i></d…

The following classes could not be instantiated:

Android studio新建项目xml文件不显示Preview问题解决方法 报错如下&#xff1a; 1、The following classes could not be instantiated: 2、The following classes could no 3、Failed to load AppCompat ActionBar with unknown error. 找到values文件夹下面的styles.xm…

简单使用CXF实现webserver(rs的独立发布)

简单使用cxf_rs的方式实现webserver 1创建maven project java项目 2,在maven文件中导入相关依赖 <dependencies>    <!--使用 CXF 的RS开发模式 --><dependency><groupId>org.apache.cxf</groupId><artifactId>cxf-rt-frontend-jaxrs&…

小程序 ios页面 左右滑动 解决方法

单页面的微信小程序在ios手机上&#xff0c;会出现能左右滑动一定距离的问题。解决办法就两行代码&#xff1a; 设置外层元素的css为 width:100%; overflow-x:hidden;

工作158:vue里面为什么要加key

没有key <div id"app"><div><input type"text" v-model"name"><button click"add">添加</button></div><ul><li v-for"(item, i) in list"><input type"checkbox&…

Activity之间传递bitmap,Observer观察者模式

使用Observer模式进行传递 三个主要类&#xff1a;Observer、Subject、TestObServernotice /*** 作者&#xff1a;created by meixi* 邮箱&#xff1a;15913707499163.com* 日期&#xff1a;2019/5/23 15*/public interface Observer {void update(int id, int intparameter,…

mongodb [main] Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify

今天重启电脑&#xff0c;跑mongodb遇到报错&#xff1a; [main] Automatically disabling TLS 1.0, to force-enable TLS 1.0 specify --sslDisabledProtocols none直接写我的解决方法&#xff1a; 可以先看看mongodb进行占用情况 ps -ef|grep mongod然后直接干掉mongo su…

工作159:根据id传向把对象里面的整个数据传向下个接口

/*绑定第三方账号id*/BindAccount(id) {this.dialogVisible truegetAction("/account/ff_account_list").then(res > {/*通过account_id接收*/this.account_id idthis.BindData res.data.data})}, <el-form class"left-right"><el-form-ite…

Android 人脸识别拍照demo

1、活体与照片。效果&#xff0c;捕获人脸 2、活体人脸识别&#xff1a;https://blog.csdn.net/meixi_android/article/details/88690445 运行效果&#xff1a; 自定义获取人脸view /*** 作者&#xff1a;created by meixi* 邮箱&#xff1a;13164716840163.com* 日期&#x…

多进程进阶

一 multiprocessing模块介绍 python中的多线程无法利用多核优势&#xff0c;如果想要充分地使用多核CPU的资源&#xff08;os.cpu_count()查看&#xff09;&#xff0c;在python中大部分情况需要使用多进程。Python提供了multiprocessing。 multiprocessing模块用来开启子进…

typescript 安装

记录基本的typescript 安装过程。 1、安装 查看最新的版本号 npm show typescript去npm服务器读取包最新的信息&#xff1a; npm install -g typescript使用tsc -v查看版本号 使用npm bin -g查看安装目录 2、使用tsc index.ts就可以将ts文件编译成js文件。 官方在线实练…

工作160:总结VUE几种页面刷新方法

有时候在页面里做了某些操作以后&#xff0c;需要页面刷新一下来重新获取数据。试了几种方法&#xff0c;以下总结&#xff1a; 1、this.$router.go(0) 这种方法页面会一瞬间的白屏&#xff0c;体验不是很好&#xff0c;虽然只是一行代码的事 2、location.reload() 这种也是一样…

linux中修改字符编码

一. ubuntu修改字符编码 1. 添加字符编码&#xff0c;例如zh_CN.UTF-8&#xff0c;有两种方式 方法1&#xff1a;locale-gen zh_CN.UTF-8 #locale-gen命令只在ubuntu中才有 方法2&#xff1a;在/var/lib/locales/supported.d/local中添加字符集zh_CN.UTF-8&#xff0c;保存后…

iview代码片段 去除水平menu底部横线

此处记录日常写的小代码片段 直接使用iview的Menu在底部会出现一条border线&#xff0c;而我的使用场景&#xff0c;不需要border线。所以我就覆盖一下它原来的样式&#xff0c;就可以了。 代码&#xff1a; .ivu-menu-light {&:after {height: 0px !important;}}效果&a…

Android 实现指纹识别demo

demo链接&#xff1a;https://download.csdn.net/download/meixi_android/10796468 1、指纹工具类&#xff1a; /*** 作者&#xff1a;created by meixi* 邮箱&#xff1a;13164716840163.com* 日期&#xff1a;2018/8/30 09*/public class FingerprintManagerUtil {private …

工作161:eachart渲染步骤

第一步 页面 第二步 第三步 方法调用

vue js xlsx 读取 本地 excel

最近在写一个人力资源管理系统&#xff0c;主要目的是将本地的excel文件读取解析&#xff0c;将有效数据传到后台。 下文介绍流程&#xff0c;文末附有参考文章。 1、安装npm包xlsx yarn add xlsx2、结合上传组件和自己写的读取方法readXLSX&#xff0c;可以进行本地excel读…

Android 上下滚动字幕实现

首先values文件夹下添加或创建attrs文件&#xff0c;如下&#xff1a; <?xml version"1.0" encoding"utf-8"?> <resources><!--//垂直滚动字幕--><declare-styleable name"VerticalRollingTextView"><!--文字颜色-…

mongoose获取最高分

我的需求&#xff1a;获取所有成绩中的最高分。 方法&#xff1a;根据分数倒序&#xff0c;查询第一个。 const topScore await Score.find().sort({ score: -1 }).skip(0).limit(1);