我想知道MongoDB中“客户服务”文档的最佳布局是什么。我认为这样的事情,但不确定。
{
"userid":(MONGODBUSERID),
"subject":"subjectofissue",
"issue":"issue that the user has",
"replies":[{
"whoreplied":"staff/customer",
"uid":"userid of replier",
"msg":"msg of reply"
}]
}
这是最好的方法吗?如果是这样,我如何用PHP更新回复数组?我需要插入回复数组而不覆盖过去的回复。
我绑了这个,但得到了以下错误
致命错误:不允许使用带有“零长度密钥”消息的未捕获异常“MongoException”,您是否使用带双引号的$?在/home/MYSITE/public_html/core.php:347
堆栈跟踪:
我的代码
$array = array(
"$push" => array(
"replies" => array(
"whoreplied" => "user",
"uid" => new MongoId($this->data['uid']),
"msg" => $this->data['issue']
)
)
);
$collection->update(array(
"_id" => new MongoId($this->data['customerID'])
), $array);
答案 0 :(得分:2)
您需要在第2行使用单引号($push
)而不是双引号('
)包围'"
命令。
$array = array(
'$push' => array(
"replies" => array(
"whoreplied" => "user",
"uid" => new MongoId($this->data['uid']),
"msg" => $this->data['issue']
)
)
);
双引号将导致PHP将$push
视为变量,并尝试将其替换为变量的值。