0

我正在尝试使用 PHP 学习 MongoDB。我可以使用 ->save($object) 成功保存一个新文档。我的目标是将子文档添加到具有特定_id 的文档中。

我有一个文件:

"5197f4bef045a1d710000032": {
"_id": {
  "$id": "5197f4bef045a1d710000032"
},
"tag": 5487,
"serial": "1z5589ss56",
"type": "Soda Can",
"dept": "NOC",
"location": "Mitchell",
"date": 1368913086,
"moves": null
}

我想在“移动”中插入一个新文档。

我已经能够使用 $set 一次,但是随后的 $push 什么也没做。

    <?php


$m = new Mongo();

$d = $m->selectDB('peeps');
$c = $d->family;
$fields = array('tag' => 5487 , 'serial' => '1z5589ss56', 'type' => 'Soda Can', 'dept' => 'NOC', 'location' => 'Mitchell', 'date' => time() );

$can = new Asset($fields);
#$c->save($can);

#Update to insert move

$c->update(array('_id' => new MongoID('5197f0cef045a1d710000032')), array('$push' => array('moves' => $can)));


$cur = $c->find();
$J = json_encode(iterator_to_array($cur));
print($J);


class Asset{

    public $tag;
    public $serial;
    public $type;
    public $dept;
    public $location;
    public $date;
    public $moves;

    public function __construct($fields){
        $this->tag = $fields['tag'];
        $this->serial = $fields['serial'];
        $this->type = $fields['type'];
        $this->dept = $fields['dept'];
        $this->location = $fields['location'];
        $this->date = $fields['date'];
    }
}

根据我所阅读的内容,每次重新加载页面时,这应该会在 5197f0cef045a1d710000032.moves 内创建一个嵌套文档。

我不确定我错过了什么。

谢谢,

米切尔

4

1 回答 1

2

$push如果您计划稍后使用相同的字段,则不应使用具有简单值的 $set 。

也使用$push第一次更新。它将创建一个包含单个元素的数组,然后您将能够向其中添加(推送)更多元素。

于 2013-05-19T00:23:34.537 回答