在我的mongodb集合中,我想将一些元素推送到现有数组。我使用jenssegers/Laravel-MongoDB - Eloquent model and Query builder来处理lavavel和mongodb。
如何在jenssegers / Laravel-MongoDB中使用$ push运算符?
{
"_id": ObjectId("5328bc2627784fdb1a6cd398"),
"comments": {
"0": {
"id": 3,
"score": 8
}
},
"created_at": ISODate("2014-03-18T21:35:34.0Z"),
"file": {
"file_id": NumberLong(1175),
"timestamp": NumberLong(1395178534)
}
}
RockMongo和mongo shell文档的数组表示略有不同。看看comments
- 数组。上面的RockMongo表示形式出现在mongo shell中:
{
"_id" : ObjectId("5328c33a27784f3b096cd39b"),
"comments" : [
{
"id" : 3,
"score" : 8
}
],
"created_at" : ISODate("2014-03-18T22:05:46Z"),
"file" : {
"file_id" : NumberLong(1176),
"timestamp" : NumberLong(1395180346)
}
}
正如文档所述,$push
操作符将元素推送到数组。这在mongo-shell中运行良好:
db.Images.update({'file.file_id': 1175},
{ $push: { comments: { id: 3, score: 8} }
})
但是在查询构建器中,我很难合并$ push运算符。我收到错误:
localhost:27017: Modified field name may not start with $
我没有找到任何证明我如何操作的文档或示例..
// $file_id = 1175
public static function addComment( $file_id ) {
$image = Images::where( 'file.file_id', '=', floatval( $file_id ) )
->update( array('$push' => array( 'comments' => array( 'id' => 4, 'score' => 9 ) ) ) );
return $image;
}
答案 0 :(得分:5)
假设一切正常,因为它在shell中有效,那么请使用提供的方法推送:
Images::where('file.file_id', '=', floatval( $file_id ))
->push('comments', array( 'id' => 4, 'score' => 9 ));