如何在yii2 ckeditor中插入初始值

时间:2017-08-31 15:40:56

标签: yii2 ckeditor

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

这是我的代码 我需要在编辑器中设置初始值

1 个答案:

答案 0 :(得分:0)

您应该在字段模板中指定一个值,例如在您的controller / create

  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,
          ]);
      }
  }

一旦你为你的$ model-&gt;模板设置了你需要的值,你应该在你的编辑器中看到这个