Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的 mongodb 中添加数据
models.user.find(function(err, docs){ console.log(docs) }); var user = new models.user.model({ ... }) user.save();
第一次console.log很好地返回我在用户集合中的所有内容但是当我想创建我的用户时,我有“无法调用未定义的方法'模型'”
我不明白为什么
谢谢
我发现 :)
models.user.find(function(err, docs){ console.log(docs) }); var user = new models.user({ ... }) user.save();