Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的表单字段为
$form->textArea($model,'remarks[1]');
在这里,我必须为此文本区域设置值。
这个怎么做?我是这个框架的新手。
如果$model是您的模型并且remarks[1]是您的属性,则可以使用以下方法指定值:
$model
remarks[1]
$model->remarks[1] = '你的价值';
编辑:
尝试:
$model->remarks = 'Your Value'; $form->textArea($model,'[1]remarks');