在 CakePHP 2.2.1 上,我想覆盖视图中的模型错误消息。我已经使用了这个代码,就像文档说的那样
<?php
echo $this->Form->input('Company.name',
array('error' => array('notEmpty' => __('My custom message')))
); ?>
但不知何故它不起作用。
我在模型中的验证是这样的
public $validate = array(
'name' => 'notEmpty',
);