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.
嗨,对 Yii 框架不是很熟悉,有人可以告诉我如何更改默认的 errorSummary 消息吗?我已经看过 Yii 指南并让我感到困惑。我需要在模型中添加什么以及在视图中需要什么?谢谢
将默认消息写入模型的规则部分,如下所示
public function rules() { array('attrubutename', 'required','message' => 'Your message'), }
更新试试这个
<?php echo $form->errorSummary($model,'Your message goes here'); ?>