4

我在mongodb中有一个看起来像这样的集合。

"_id" : ObjectId("554c5397ccfff21e103c9869"),
"name" : "test",
"color" : [
    "552ced22ccfff2d8183c986a_Jellow",
    "551fdd24ccfff2362e3c9869_test"
],
"updated_at" : ISODate("2015-05-08T06:11:35.303Z"),
"created_at" : ISODate("2015-05-08T06:11:35.303Z")

我只想更新数组颜色中的一个值但是当我尝试更新数组时,它会从颜色数组中删除所有值并将其替换为新值。这是代码。(我正在为 LARAVEL 使用 JESSENGER MONGODB 包

$query->where($field,'regexp','/^('.$id.')_.*/')->update([$field=>$id.'_'.$name]);

我该怎么做。??

4

3 回答 3

4

您想要做的是,将您的架构更改为 {key: value} 对,然后按照本教程进行操作,这将帮助您解决问题。或者您可以从颜色数组中获取所有值并替换为新值,然后更新您的文档(我不会这样做,因为它是一种肮脏的方法!)。

编辑

嘿,巴德!我在 jenssenger docs 上创建了这个:


将项目添加到数组中。

DB::collection('users')->where('name', 'John')->push('items', 'boots');
DB::collection('users')->where('name', 'John')->push('messages', array('from' => 'Jane Doe', 'message' => 'Hi John'));

如果您不想重复项,请将第三个参数设置为 true:

DB::collection('users')->where('name', 'John')->push('items', 'boots', true);

从数组中删除一个项目。

DB::collection('users')->where('name', 'John')->pull('items', 'boots');
DB::collection('users')->where('name', 'John')->pull('messages', array('from' => 'Jane Doe', 'message' => 'Hi John'));
于 2015-05-08T06:32:45.193 回答
0

您需要使用$set运算符。不确定它是如何在 Jessenger Mongodb 中完成的,但可能类似于:

$query->where($field,'regexp','/^('.$id.')_.*/')
      ->update(['$set' => [ $field=>$id.'_'.$name]]);
于 2015-05-08T07:20:17.897 回答
0

为什么不像这样更改您的数据:

"_id" : ObjectId("554c5397ccfff21e103c9869"),
"name" : "test",
"color" : [
    { "id":"552ced22ccfff2d8183c986a", "name":"Jellow"},
    { "id":"551fdd24ccfff2362e3c9869", "name":"test"}
],
"updated_at" : ISODate("2015-05-08T06:11:35.303Z"),
"created_at" : ISODate("2015-05-08T06:11:35.303Z")

然后你可以通过 id 更新元素。

于 2015-05-08T07:55:37.187 回答