3

Yii 中我的模型规则函数中的以下代码

public function rules()
{
    // NOTE: you should only define rules for those attributes that
    // will receive user inputs.
    return array(
        array('mail, firstname, lastname, number, question, time', 'required','message'=>'{attribute} نمی تواند خالی باشد'),
        array('status', 'numerical', 'integerOnly'=>true,'message'=>'{attribute} فقط مقادیر عددی مجاز است'),
        array('mail, firstname, lastname, number', 'length', 'max'=>45,'message'=>'حداکثر طول {attribute} ۴۵ کارکتر می باشد'),
        array('question','length','min'=>10,'message'=>'حداقل طول سوال ۱۰ کارکتر می باشد'),
        array('mail','email','message'=>'ایمیل وارد شده حقیقی نمی باشد'),
        array('time','unsafe'),
        // The following rule is used by search().
        // Please remove those attributes that should not be searched.
        array('id, mail, firstname, lastname, number, question, time, status', 'safe', 'on'=>'search'),
    );
}

所有消息都正常工作,除了我为最小长度定义的消息

array('question','length','min'=>10,'message'=>'حداقل طول سوال ۱۰ کارکتر می باشد'),

它总是返回 Yii 的默认值,这意味着 پرسش 太短(最少 10 个字符)。

4

1 回答 1

12

当字段不是由 property 指定的某个确切长度时才message使用该属性。对于自定义最小长度消息使用属性istooShort

array('question','length','min'=>10,'tooShort'=>'حداقل طول سوال ۱۰ کارکتر می باشد'),
于 2012-12-18T10:05:44.830 回答