4

我想更新(替换)所有文档数组中的一个子文档,这些文档具有这个特定的嵌入子文档。

我的示例内容对象是:

{
    "_id" : ObjectId("51f289e5345f9d10090022ef"),
    "title" : "This is a content",
    "descriptors" : [ 
        {
            "_id" : ObjectId("51f289e5345f9d10090022f4"),
            "name" : "This is a descriptor",
            "type" : "This is a property"
        },
        {
            "_id" : ObjectId("51f289e5345f9d10090022f0"),
            "name" : "This is another descriptor",
            "type" : "This is another property"
        }
    ]
}

我想找到具有特定descriptor._id. 我想用另一个子文档替换一个子文档(分别使用旧对象的更新版本,但不一定具有相同的属性)。

虽然这在RoboMongo / shell 中运行良好......

db.Content.update(
{
    'descriptors._id': ObjectId("51f289e5345f9d10090022f4")
},
{
    $set: {
        'descriptors.$': {
            "_id" : ObjectId("51f289e5345f9d10090022f4"),
            "name" : "This is the updated descriptor",
            "category" : "This is a new property"
        }
    }
},
{
    'multi': true
})

...并使用普通的 php 方法...

$descriptor = array();
$descriptor['_id'] = new \MongoID('51f289e5345f9d10090022f4');
$descriptor['name'] = 'This is the updated descriptor';
$descriptor['category'] = 'This is a new property';

$mongo = new \Mongo('mongodb://localhost:27017');
$database = $mongo->selectDB('MyDatabase');

$output = $database->selectCollection('Content')->update(
    array('descriptors._id' => $descriptor['_id']),
    array('$set' => array('descriptors.$' => $descriptor)),
    array("multiple" => true)
);

...它不适用于Doctrine MongoDB ODM ...

$descriptor = array();
$descriptor['_id'] = new \MongoID('51f289e5345f9d10090022f4');
$descriptor['name'] = 'This is the updated descriptor';
$descriptor['category'] = 'This is a new property';

$query = $dm->createQueryBuilder('Content')
->update()->multiple(true)
->field('descriptors._id')->equals($descriptor['_id'])
->field('descriptors.$')->set($descriptor)
->getQuery()->execute();

...因为它失败并出现以下错误:

注意:未定义的偏移量:C:\MyProject\vendor\doctrine\mongodb-odm\lib\Doctrine\ODM\MongoDB\Persisters\DocumentPersister.php 第 998 行中的 2

所以我假设,Doctrine MongoDB ODM需要点符号中的三个部分。不太好的解决方案是迭代子文档的属性并手动设置它们。

$descriptor = array();
$descriptor['_id'] = new \MongoID('51f289e5345f9d10090022f4');
$descriptor['name'] = 'This is the updated descriptor';
$descriptor['category'] = 'This is a new property';

$query = $dm->createQueryBuilder('Content')
->update()->multiple(true)
->field('descriptors._id')->equals($descriptor['_id']);
foreach ($descriptor as $key => $value) {
    $query->field('descriptors.$.'.$key)->set($value);
}
$query->getQuery()->execute();

但这只会更新现有属性并添加新属性,但不会从子文档中删除旧的/不必要的属性。

如何解决问题的任何想法:

  • 用一个简单的查询
  • 在使用Doctrine MongoDB ODM时
  • 无需在 php 中循环子文档数组

我在用着:

  • Mongo-服务器:2.4.5
  • PHP: 5.4.16
  • PHP-Mongo-驱动程序:1.4.1

作曲家:

"php": ">=5.3.3",
"symfony/symfony": "2.3.*",
"doctrine/orm": ">=2.2.3,<2.4-dev",
"doctrine/doctrine-bundle": "1.2.*",
"doctrine/mongodb-odm": "1.0.*@dev",
"doctrine/mongodb-odm-bundle": "3.0.*@dev"
4

2 回答 2

2

这是 ODM 中的一个错误,应该在PR #661中修复。请查看并确保修改后的测试满足您的用例。

在标记 ODM 的下一个 beta 之前,它只会驻留在 master 分支中;但是,这应该符合您的1.0.*@dev版本要求。

于 2013-08-20T21:49:26.103 回答
1

你可以做这件事,但以一种“不容易”的方式,因为当你在 Doctrine 中使用EmbedManyReferenceMany时, Doctrine ArrayCollection对象使用 PHP in_array()方法实现了ArrayCollection contains()方法(如此处所述) $strict参数设置为true ... 这种方式适用于 ReferenceMany,但不适用于 EmbedMany!

概念是:ArrayCollection -> 数组 -> ArrayCollection

在文档的定义中...

/**
 * @ODM\EmbedMany(targetDocument="EmbeddedElement")
 */
private $elements = array();

...

public function getElements() { return $this->elements; }
public function setElements($elements) { $this->elements = $elements; }
public function addElement(Element $element) { $this->elements[] = $element; }

public function setElement(Element $element, $index=0)
{
    $elementsArray = $this->elements->toArray();

    $elementsArray[$index] = $element;

    $this->elements = new ArrayCollection($elementsArray);
}

public function removeElement(Element $element)
{
    $index = array_search($element, $this->elements->toArray(), $strict=false);

    if($index !== false)
        $this->elements->remove($index);
}

public function removeElementByIndex($index) { $this->elements->remove($index); }
于 2016-01-22T14:35:32.427 回答