4

我需要在 yiimongodbsuite 中执行 upsert 命令。我试过了

$model   = new Murls();          
                $model->userid=$userid;
                $model->title=$title;      
                $model->edits[0] = new Medithtml();
                $model->edits[0]->path= $htm;
                $model->edits[0]->html=$path;
                $model->edits[0]->ci=$ci;
                $model->update(array('_id'=>$rec->_id ),array('userid', 'title','edits' ), true );

但这显示了一个错误。

Murls模型定义如下

   class Murls extends EMongoDocument
    {
        public $userid;
        public $title;
        public $edits;



   public static function model($className=__CLASS__)
      {
        return parent::model($className);
      }

      // This method is required!
      public function getCollectionName()
      {
        return 'murls';
      }

      public function attributeLabels()
      {
        return array(
          'html'=>'Html',
        );
      }

      public function embeddedDocuments()
      {
        return array(
                // property name => embedded document class name
                'edits'=>'Medithtml',

        );
      }

      public function behaviors(){
            return array(
                            'embeddedArrays' => array(
                                'class' => 'ext.YiiMongoDbSuite.extra.EEmbeddedArraysBehavior',
                                'arrayPropertyName' => 'edits', // name of property, that will be used as an array
                                'arrayDocClassName' => 'Medithtml'    // class name of embedded documents in array
                ),
        );
      }

    }

并将 Medithtml 建模为

class Medithtml extends EMongoEmbeddedDocument{
    public $html;
    public $path;
    public $ci;

    public static function model($className=__CLASS__)
    {
        return parent::model($className);
    }


}

我需要实现的是一个记录$title可以有 n 个$html ,$path$ci. 任何帮助将不胜感激。我正在寻找的是存储这样的数据

     array (
  '_id' => 
  MongoId::__set_state(array(
     '$id' => '51ee1956d39c2c7e078d80da',
  )),
  'userid' => '12',
  'title' => 'Mongo',
  'edits' => 
  array (
    0 => 
    array (
      'html' => 'html>body>div:nth-child(2)>a>div>a>div',
      'path' => 'ssssss',
      'ci' => '1',
    ),
    1 => 
    array (
      'html' => 'html>body>div:nth-child(2)>a>div:nth-child(3)>a>h2',
      'path' => '/assets/img/demo/demo-avatar9604.jpg',
      'ci' => '2',
    ),
    2 => 
    array (
      'html' => ' html>body>div:nth-child(2)>a>div:nth-child(3)>a>center:nth-child(16)>a>h1',
      'path' => '333',
      'ci' => '3',
    ),
  ),
)

'title'如果记录具有 和 的特定组合,则仅更新注释数组。如果'userid'不存在,将插入新记录

4

2 回答 2

3

您从错误的类继承。要保存文档,您必须从EMongoDocumentnot继承EMongoEmbeddedDocument。这些类是相似的,但有不同的目的。

  • EMongoEmbeddedDocument仅用于嵌入文档,它应该仅用于嵌入文档
  • EMongoDocumentEMongoEmbeddedDocumentwith 方法扩展以实际将数据保存到 db。

对于评论数组,您有两种选择:

  1. 使用普通的 php 数组 - 简单、不易维护、功耗更低、容易出错..
  2. 使用嵌入式文档数组- 每个评论都是文档,因此可以验证,具有严格的结构等。

默认情况下save//存储所有属性insertupdate对于部分更新,使用$attributes和设置$modify为 true 的组合。警告:不传递属性数组$modify将只存储传递的属性,丢弃文档的其余部分。

public function save($runValidation = true, $attributes = null)
...
public function insert(array $attributes = null)
...
public function update(array $attributes = null, $modify = false)
...

因此,在您的情况下,您可以这样更新:

$model->update(array('comments'), true);

或者,如果您可以覆盖整个文档,只需保存:

$model->save();

注意:对于复合 pk ovverride primaryKey()

public function primaryKey()
{
    return array('title', 'userid');
}

嗯,很好,stackoverflow 有草稿自动保存功能:)

于 2013-07-22T16:20:08.737 回答
1

最后我以这种方式得到了解决方案:

       $rec = $model->find($criteria)  ;
           if($rec){

       foreach($rec->edits as  $editarray){
            $var[]=$editarray;
       }
        $edits_new= new Medithtml();
        $edits_new['html']=$htm;
        $edits_new['ci']=$ci;
        $edits_new['path']=$path;  
        $var[]=$edits_new;
        $rec->edits=$var;

        $rec->userid=$userid;
        $rec->title=$title;
        $rec->update(array('edits'  ), true);
      }
于 2013-07-23T11:10:47.530 回答