当前位置:  开发笔记 > 编程语言 > 正文

使用mongoose将字段设置为空的mongo对象

如何解决《使用mongoose将字段设置为空的mongo对象》经验,为你挑选了1个好方法。

我在一个对象上调用user.save(),我在其中设置user.signup_date = null;

user.first_name = null;
user.signup_date = null;

user.save();

但是,当我在mongodb中查看用户时,它仍然具有signup_date和first_name设置...如何有效地将此字段设置为空或null?



1> JohnnyHK..:

要从现有文档中删除这些属性,请将其设置为undefined而不是null在保存文档之前:

user.first_name = undefined;
user.signup_date = undefined;

user.save();

推荐阅读
贾志军
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有