1

猫鼬:

如何在不使用更新或手动设置每个字段的情况下更新模型的多个字段?

谢谢 (:

4

1 回答 1

3

You can do it with underscore:

var _ = require('underscore');

_.extend(doc, new_data);
doc.save(next);

See API Docs for more info.

于 2013-07-25T14:44:42.013 回答