如何在 Yii2 验证规则消息中放置换行符
How to put line-breaks in Yii2 validation rules messages
我需要打破 Yii2 验证规则中使用的长消息。
我这样试过:
public function rules()
{
return [
['username', 'required', 'message' => 'long message first line here'."<br>".PHP_EOL.'long message last line here'],
];
}
但是 <br>
出现在消息中并且该行没有在我需要的地方中断。
明确一点,我得到的是:
long message first line here<br>long message last line here
而不是:
long message first line here
long message last line here
有人可以帮忙吗?我真的很感激!提前谢谢你。
我已经解决了将这个添加到 ActiveForm::begin
<?php $form = ActiveForm::begin([
'fieldConfig' => [
'errorOptions' => ['class' => 'help-block', 'encode' => false],
],
]); ?>
并用一个简单的 <br />
[['username'], 'required', 'message' => 'long message first line here <br />long message last line here'],
我需要打破 Yii2 验证规则中使用的长消息。
我这样试过:
public function rules()
{
return [
['username', 'required', 'message' => 'long message first line here'."<br>".PHP_EOL.'long message last line here'],
];
}
但是 <br>
出现在消息中并且该行没有在我需要的地方中断。
明确一点,我得到的是:
long message first line here<br>long message last line here
而不是:
long message first line here
long message last line here
有人可以帮忙吗?我真的很感激!提前谢谢你。
我已经解决了将这个添加到 ActiveForm::begin
<?php $form = ActiveForm::begin([
'fieldConfig' => [
'errorOptions' => ['class' => 'help-block', 'encode' => false],
],
]); ?>
并用一个简单的 <br />
[['username'], 'required', 'message' => 'long message first line here <br />long message last line here'],