如果我有以下表单字段(下面的代码),我如何在模型中按要求设置字段,以便与其他字段一样,如果表单不包含信息,则无法提交表单。
<?= $form->field($model, 'seo[seo_title]')->textInput(['maxlength' => 60])->label('SEO Title') ?>
答案 0 :(得分:1)
在选项中为te textinput添加value
,例如:
<?= $form->field($model, 'seo[seo_title]')->textInput(['maxlength' => 60], 'value'=> $yourValue )->label('SEO Title') ?>
或者如果您只需要这些字段,则需要在模型中标记