从手册中,我了解以下说明...
Person.find({ name: "Jack" }, function (err, people) {
// finds people with name='Jack'
});
我想找两个人,“杰克”和“吉尔”。这显然是不正确的,但类似...
Person.find({ name: "Jack" AND name: "Jill" }, function (err, people) {
// finds all people with name='Jack' and name ='Jill'
});