本文介绍了Mongoose.js:通过用户名LIKE值查找用户的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我喜欢通过寻找一个名为value的用户去找一个mongoDb中的用户。
问题在于:
$ p $ 用户名:'peter'
是,如果用户名是Peter或者Peter或者类似的话,我就不会找到它。
所以我想要做的像sql
SELECT * FROM用户WHERE用户名LIKE'peter'
希望你们能得到我要的东西?
短:'mongoose.js / mongodb中的'字段LIKE值
解决方案
只为寻找答案的人,我是我喜欢这个
var name ='Peter';
model.findOne({name:new RegExp('^'+ name +'$',i)},function(err,doc){
//在这里执行您的操作..
});
I like to to go find a user in mongoDb by looking for a user called value.The problem with:
username: 'peter'
is that i dont find it if the username is "Peter", or "PeTER".. or something like that.
So i want to do like sql
SELECT * FROM users WHERE username LIKE 'peter'
Hope you guys get what im askin for?
Short: 'field LIKE value' in mongoose.js/mongodb
解决方案
Well. Just for people who are lookin for the answer i was i did like this
var name = 'Peter';
model.findOne({name: new RegExp('^'+name+'$', "i")}, function(err, doc) {
//Do your action here..
});
这篇关于Mongoose.js:通过用户名LIKE值查找用户的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!