在登录表单中,我需要glyphicon-remove
在每条验证消息的末尾都有一个带有相应字段名称的图标。所以我在Login model
.
['email', 'required', 'message' => 'Email cannot be blank<span class="glyphicon glyphicon-remove"></span>'],
['password', 'required', 'message' => 'Password cannot be blank<span class="glyphicon glyphicon-remove"></span>']
除了上面的代码之外,是否有任何可能的方法来使用类似下面的代码。
[['email', 'password'], 'required', 'message' => $attribute.' cannot be blank<span class="glyphicon glyphicon-remove"></span>']
上述代码的思想是为每个字段动态获取对应的字段名称。
请只做那些需要的。谢谢。
更新
我在这里使用的HTML
代码(<span class="glyphicon glyphicon-remove"></span>
)是通过使用正确输出的encode=>'false'
。但是我需要的不是为每个字段单独定义,而是需要为所有字段共同定义。