2017-01-05 37 views

回答

0

您可以使用regex這一點。

Organisation.find({name: {$regex: new RegExp('^P$', "i")}}).sort('updatedAt').all(function(res) { 
    //Do your action here.. 
}); 
相關問題