我正试图创建一个自动占位符'元素使用Yii2,因为我无法找到问题的实际答案,我想我会在这里试一试。
例如,我有这个字段:
<?= $form->field($model, 'username',
[
'template'=>'{input}{label}{error}'
])
->textInput(['placeHolder'=>'{name}')
->label(false);
?>
然而,这种情况显然会导致&#34; name&#34;在占位符属性中。
但我想根据我使用的model
变量自动生成占位符属性,使其呈现以下内容:
<input type="text" id="loginform-username" class="form-control" name="LoginForm[username]" placeholder="Username">
是否有一种已知的方法来访问和插入form->field
的属性并将其显示在自己的元素中?
答案 0 :(得分:1)
是的,我们可以通过在模型文件中定义属性标签来完成,如下所示。
public function attributeLabels() {
return [
'username' => 'Username',
];
}
然后您可以根据以下字段自动获取标签。
<?= $form->field($model, 'username',
[
'template'=>'{input}{label}{error}'
])
->textInput(['placeholder' => $model->getAttributeLabel('username'))
->label(false);
?>
我希望这能解决你的问题。
答案 1 :(得分:0)
如果您有一些额外的麻烦,可以为此扩展ActiveField类。
class MyActiveField extends \yii\widgets\ActiveField
{
public function textInput($options = [])
{
if (empty($options['placeholder'])) {
$options['placeholder'] = $this->model->getAttributeLabel($this->attribute);
}
return parent::textInput($options);
}
}
现在只需要使用您的类而不是默认类。 您可以在视图中执行每次操作:
<?php $form = ActiveForm::begin([
'fieldClass' => 'fully\qualified\name\of\MyActiveField'
]); ?>
或者扩展ActiveForm:
class MyActiveForm extends \yii\widgets\ActiveForm
{
$fieldClass = 'fully\qualified\name\of\MyActiveField';
}
并使用它而不是默认的ActiveForm小部件:
<?php $form = MyActiveForm::begin(); ?>
现在您可以使用<?= $form->field($model, 'attribute')->textInput() ?>
(或仅<?= $form->field($model, 'attribute') ?>
,因为textInput
是默认值)并且占位符应该在那里。