0

我目前正在使用MongoDB的 php Kohana框架开发应用程序。我有适用于这个框架的 MongoDB 模块的链接。按照给出的说明,我已经用应用程序配置了模块。但我坚持在这里无法进行进一步的开发工作。基于 MongoDB 的查询不能与此模块一起使用。在从集合中选择单个文档时,按照代码向我发送错误。

 <?php defined('SYSPATH') OR die('No Direct Script Access');
    Class Model_Cms extends Model
    {
        public function __construct()
        {
            $this->mongo_db = MangoDB::instance('default');
        }

        /*Get the CMS Content*/
        public function getcmscontent($content,$default_companyid="")
        {
          $cms_result = $this->mongo_db->findOne('cms');
            return $cms_result;
        }
    }

在此处输入图像描述

任何人都可以帮助我进一步进行。

4

1 回答 1

0
$cms_result = $this->mongo_db->find_one(MDB_CMS,array('type'=>1,'status'=>1,'menulinks.menu_link'=>$content),array('content','meta_keyword','meta_title','meta_description','menu'));

在这个问题上花费了几个小时后,我已经使用了这种方法。

于 2016-02-25T10:48:30.537 回答