const userExists = await Users.exists({ username: username });
如何使userExists布尔值不区分大小写?
**
如果我输入anurag,anurag,aNurag,结果是false
xwbd5t1u1#
您将需要使用Regex
const userExists = await Users.exists({ username: { '$regex': username, $options: 'i' } })
选项中的i代表case-insensitive。
i
case-insensitive
1条答案
按热度按时间xwbd5t1u1#
您将需要使用Regex
选项中的
i
代表case-insensitive
。