如何在mongo中将信息附加到文档?

时间:2016-11-04 14:46:07

标签: php mongodb csv

背景资料

我的mongo数据库中有以下数据:

{ "_id" : 
       ObjectId("581c97b573df465d63af53ae"), 
       "ph" : "+17771111234", 
       "fax" : false, 
       "city" : "abd", 
       "department" : "", 
       "description" : "a test" 
}

我现在正在编写一个脚本,它将遍历一个CSV文件,其中包含我需要附加到文档的数据。例如,数据可能如下所示:

+17771111234, 10:15, 12:15, test@yahoo.com
+17771111234, 1:00, 9:00, anothertest@yahoo.com

最终我希望得到一个看起来像这样的mongo文档:

{ "_id" : 
       ObjectId("581c97b573df465d63af53ae"), 
       "ph" : "+17771111234", 
       "fax" : false, 
       "city" : "abd", 
       "department" : "", 
       "description" : "a test",
       "contact_locations": [
           {
              "stime": "10:15", 
              "etime": "12:15", 
              "email": "test@yahoo.com"
           },
           {
              "stime": "1:00", 
              "etime": "9:00", 
              "email": "anothertest@yahoo.com"
           },
       ]
}

问题

我编写的代码实际上是创建新文档而不是附加到现有文档。实际上,它甚至没有在CSV文件中每行创建一个新文档...我还没有调试到足以真正了解原因。

代码

对于csv文件中的每一行,我运行以下逻辑

while(!$csv->eof() && ($row = $csv->fgetcsv()) && $row[0] !== null) { 
   //code that massages the $row into the way I need it to look.
   $data_to_submit = array('contact_locations' => $row);
   echo "proving that the record already exists...: <BR>";
   $cursor = $contact_collection->find(array('phnum'=>$row[0]));   
   var_dump(iterator_to_array($cursor));

   echo "now attempting to update it....<BR>";
   // $cursor = $contact_collection->update(array('phnum'=>$row[0]), $data_to_submit, array('upsert'=>true));
        $cursor = $contact_collection->insert(array('phnum'=>$row[0]), $data_to_submit);
   echo "AFTER UPDATE <BR><BR>";
   $cursor = $contact_collection->find(array('phnum'=>$row[0]));
   var_dump(iterator_to_array($cursor));
   }
}

问题

  1. 有没有办法“追加”文件?或者我是否需要获取现有文档,另存为数组,将我的联系人位置数组与主文档合并然后重新保存?

  2. 如何查询文档中是否已存在“contact_locations”对象?

2 个答案:

答案 0 :(得分:1)

嗨,是的,你可以做到!

首先,您需要找到您的文档并推送所需的新值:

使用findAndModify$addToSet

$cursor = $contact_collection->findAndModify(
     array("ph" => "+17771111234"),
     array('$addToSet' => 
        array(
            "contact_locations" => array(
                 "stime"=> "10:15", 
                 "etime"=> "12:15", 
                 "email"=> "test@yahoo.com"
            )
        )
     )
);

最好的部分是$addToSet不会添加2次相同的东西,所以你不会有两倍相同的值:)

此处有文档https://docs.mongodb.com/manual/reference/operator/update/addToSet/

答案 1 :(得分:0)

我不确定PHP中的确切语法,因为我以前从未这样做过,但我目前在JS中使用MongoDB做同样的事情,$push是你正在寻找的方法。此外,如果我有点挑剔,我建议将$ contact_collection更改为$ contact_locations作为变量名称。数组变量名通常是复数,更具描述性总是更好。还要确保首先在MongoDB中找到要追加的数组并使用MongoDb“update”命令