我可以确定字符串是否是MongoDB对象ID吗?

我正在通过将字符串转换为BSON来进行MongoDB查找。有没有办法在进行转换之前确定我拥有的字符串是否是Mongo的有效对象ID?

这是我当前的findByID函数的咖啡脚本。它工作得很好,但是如果我确定字符串不是ID,我想通过其他属性进行查找。

db.collection "pages", (err, collection) ->
  collection.findOne
    _id: new BSON.ObjectID(id)
  , (err, item) ->
    if item
      res.send item
    else
      res.send 404

答案 1

我发现猫鼬 ObjectId 验证器可以验证有效的 objectId,但我发现一些无效 id 被认为是有效的情况。(例如:任何12个字符长的字符串)

var ObjectId = require('mongoose').Types.ObjectId;
ObjectId.isValid('microsoft123'); //true
ObjectId.isValid('timtomtamted'); //true
ObjectId.isValid('551137c2f9e1fac808a5f572'); //true

对我有用的是将字符串转换为 objectId,然后检查原始字符串是否与 objectId 的字符串值匹配。

new ObjectId('timtamtomted'); //616273656e6365576f726b73
new ObjectId('537eed02ed345b2e039652d2') //537eed02ed345b2e039652d2

这是有效的,因为有效 ID 在强制转换为 ObjectId 时不会更改,但获得假有效值的字符串在强制转换为 objectId 时将更改。


答案 2

您可以使用正则表达式来测试:

咖啡脚本

if id.match /^[0-9a-fA-F]{24}$/
    # it's an ObjectID
else
    # nope

JavaScript

if (id.match(/^[0-9a-fA-F]{24}$/)) {
    // it's an ObjectID    
} else {
    // nope    
}