这不起作用:
function delmodel()
{
$this->mongo_db->where->(array('_id'=>'5195b4293f8f31362a4f2093'))->delete('links');
}
这是有效的:
function delmodel()
{
$this->mongo_db->where->(array('url'=>'www.google.com'))->delete('links');
}
我正在使用 CodeIgniter MongoDB,我对我的输出感到完全困惑。