2017-08-31 50 views
1
 <?= 
      $form->field($model, 'template')->widget(CKEditor::className(), [ 
       'options' => ['rows' => 100], 
       'preset' => 'full', 
       'value'=>'<p>Incercam sa editam</p>', 
      ])->label(true) 
     ?> 

這是我的代碼 我需要在編輯器中設置的初始值如何插入yii2 CKEditor的初始值

回答

1

你應該在你控制在你的領域模板如賦值/創建

public function actionCreate() 
    { 
     $model = new YourModel(); 


     if ($model->load(Yii::$app->request->post()) && $model->save()) { 
      return $this->redirect(['view', 'id' => $model->id]); 
     } else { 
      $model->template ="your initila value ....... text " 
      return $this->render('@common/views/antigone-contribuente/create', [ 
       'model' => $model, 
      ]); 
     } 
    } 

一旦你指定了你的模型 - >模板,你需要的值你應該看到這個在你的編輯器中查看

+0

Thx求救!!! –