3

我在使用嵌入式文档时遇到了奇怪的行为,我不知道是我做错了什么还是一个错误。

这是我的模型:

var mg = require('mongoose')
 , S  = mg.Schema;

var subject = new S({
    name: String
  , properties: [{
        name: String
      , value: String
    }]
});

module.exports = mg.model('Subject',subject);

当我尝试添加一个属性时,它会以某种方式转换为"[object Object]"

  console.log(req.body); // --> { name: 'height', value: 120 }
  console.log(typeof req.body); // --> object
  ob.Subject.findByIdAndUpdate(req.params.id, {$push: {properties: req.body}}, function(err, doc) {
    if(err) throw err;
    res.send(doc);
  });

返回doc的是:

{_id: '...', name: 'sss', properties:[ "[object Object]" ]}

我使用 mongo CLI 检查数据库中的文档并将正确的值放入其中。

//the document as seen in mongo CLI:
{
  _id: '...', name: 'sss', 
  properties: [ "[object Object]", {name: "aaa", value: "bar"} ]
}

然后我尝试了这个:

ob.Subject.findById(id, function(err, doc) {
  res.send(doc);
}

然后返回的文档是:

{ 
  _id: '...', name: 'sss', 
  properties:[ "[object Object]", "[object Object]" ]
}

我认为,发生的事情是猫鼬以某种方式将子文档转换为该字符串。此外,我不认为这是我的res.send()错,因为:

  • 我没有使用toJsontoObject明确地,我根本不处理 JSON 转换
  • res.send()不是问题,因为即使我util.inspect的价值 - 它是一样的
  • 通过猫鼬进行写入和读取时似乎都发生了无效转换

你有没有遇到过类似的行为?有办法解决吗?

我刚开始使用 mongoose,不知道如何回退到 mongodb native 来更新和获取文档并检查这种行为是否仍然存在(我怀疑)。

任何有用的提示表示赞赏:)

4

3 回答 3

1

尽管 Node.js 和 MongoDB 都使用 Javascript,但它们并不共享相同的内存空间。他们甚至没有在同一个进程中运行。因此,他们必须通过 tcp 通信并序列化数据。

我会假设你在格式化 mongoDB 请求时req.body得到了'ed。toString()

编辑

这是正常的,因为您properties将模型的属性声明为字符串数组。

像这样声明它:

properties: Object    
于 2013-03-11T15:32:24.847 回答
1

我认为您的“属性”属性定义错误。我了解您要做什么,但我怀疑您需要将键/值对定义为它自己的类型,以便您的代码变为:

    var mg = require('mongoose')
     , S  = mg.Schema;

    var keyValue = new S({
        key: String, value: String});

    var subject = new S({
        name: String
      , properties: [keyValue]
    });

    module.exports = mg.model('Subject',subject);
于 2013-03-11T16:10:58.317 回答
0

You could try this:

ob.Subject.findByIdAndUpdate(req.params.id, {$push: {properties: {name: req.body.name, value: req.body.value}}}, function(err, doc) {
    if(err) throw err;
    res.send(doc);
});
于 2013-03-11T18:12:38.650 回答