<?=
$form->field($model, 'template')->widget(CKEditor::className(), [
'options' => ['rows' => 100],
'preset' => 'full',
'value'=>'<p>Incercam sa editam</p>',
])->label(true)
?>
这是我的代码 我需要在编辑器中设置初始值
答案 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;模板设置了你需要的值,你应该在你的编辑器中看到这个