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.
使用 Node.js 中的 ORM2 模块,在创建连接并检查其是否有效后,我找不到检索模型所有记录的方法,例如 ActiveRecord 的方式 Model.all 。我是 ORM2 的新手,看起来很明显,但我不知道......
我认为这样做:
var Blah = db.models.blah; Blah.all(function(err, blahs){ })
查看定义模型方法的代码 Model.js(上面的 Blah)有以下行:
model.all = model.find;
所以我认为 Blah.find() 也会起作用。模型实例中使用的方法在文件 Instance.js 中定义。文档不是超级棒,但到目前为止我对这个项目很满意,如果您有问题,可能会提供帮助