16

我有一个包含多个对象的集合“公司”。每个对象都有“_id”参数。我正在尝试从 db 获取此参数:

app.get('/companies/:id',function(req,res){
db.collection("companies",function(err,collection){
    console.log(req.params.id);
    collection.findOne({_id: req.params.id},function(err, doc) {
        if (doc){
            console.log(doc._id);
        } else {
            console.log('no data for this company');
        }
    });
});
});

因此,我请求 company/4fcfd7f246e1464d05000001 (4fcfd7f246e1464d05000001 是我需要的对象的_id-parma)并且 findOne 什么也没返回,这就是为什么 console.log('no data for this company'); 执行。

我绝对确定我有一个 _id="4fcfd7f246e1464d05000001" 的对象。我做错了什么?谢谢!

但是,我刚刚注意到 id 不是典型的字符串字段。这就是 mViewer 显示的内容:

"_id": {
        "$oid": "4fcfd7f246e1464d05000001"
    },

好像有点奇怪……

4

4 回答 4

21

您需要构造 ObjectID 而不是将其作为字符串传递。像这样的东西应该工作:

var BSON = require('mongodb').BSONPure;
var obj_id = BSON.ObjectID.createFromHexString("4fcfd7f246e1464d05000001");

然后,尝试在你的 find/findOne 中使用它。

编辑:正如Ohad在评论中指出的那样(感谢 Ohad!),您还可以使用:

new require('mongodb').ObjectID(req.params.id)

而不是createFromHexString如上所述。

于 2012-06-07T10:06:27.393 回答
3

那是因为_idmongo 中的字段不是string类型(作为你的req.params.id)。正如其他答案中所建议的,您应该明确转换它。

试试mongoskin,你可以像 node-mongodb-native 驱动程序一样使用它,但要加一些糖。例如:

// connect easier
var db = require('mongoskin').mongo.db('localhost:27017/testdb?auto_reconnect');

// collections
var companies = db.collection('companies');

// create object IDs
var oid = db.companies.id(req.params.id);

// some nice functions…
companies.findById();

//… and bindings
db.bind('companies', {
  top10: function(callback) {
    this.find({}, {limit: 10, sort: [['rating', -1]]).toArray(callback);
  } 
});

db.companies.top10(printTop10);
于 2012-06-07T10:25:06.490 回答
1

您可以使用findById()which 将为您处理 id 转换。

company = Company.findById(req.params.id, function(err, company) {
    //////////
});
于 2013-09-03T11:01:31.727 回答
0

如果这些对你不起作用,这对我访问博客文章有用:

const getSinglePost = async (req, res) => {

    let id = req.params.id;
    var ObjectId = require('mongodb').ObjectId;
    const db = await client.db('CMS');

    const data = await db.collection("posts").findOne({ _id: ObjectId(id) })

    if (data) {
        res.status(200).send(data)
    } else res.status(400).send({ message: "no post found" })

}
于 2020-05-22T19:04:01.540 回答