thinkphp的mongo扩展bug



代码如图,
$query = $this->parseWhere(isset($options['where'])?$options['where']:array());
if($this->config['debug']) {
$this->queryStr = $this->_dbName.'.'.$this->_collectionName.'.group({key:'.json_encode($keys).',cond:'.
json_encode($options['condition']) . ',reduce:' .
json_encode($reduce).',initial:'.
json_encode($initial).'})';
}
try{
$this->debug(true);
$option = array('condition'=>$options['condition'], 'finalize'=>$options['finalize'], 'maxTimeMS'=>$options['maxTimeMS']);
$group = $this->_collection->group($keys,$initial,$reduce,$options);
$this->debug(false);

if($cache && $group['ok'])
S($key,$group,$cache['expire'],$cache['type']);

return $group;
} catch (\MongoCursorException $e) {
E($e->getMessage());
}
bug1.因为在MongoModel.class.php里已经把筛选条件都合并到$option['condition']了,所以这里应该改为
$query = $this->parseWhere(isset($options['condition'])?$options['condition']:array());

bug2.$this->queryStr组装时应该json_encode($query)而不是
bug3. $group = $this->_collection->group($keys,$initial,$reduce,$options);应该改为
$group = $this->_collection->group($keys,$initial,$reduce,$query);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值