1
我想比較並返回錯誤消息,如果它們相等。比較yii2中的兩個字段
試圖這樣而不是工作
[['HRMS_candidateAlternateEmail'], '!compare', 'compareAttribute' => 'HRMS_candidateEmail'],
會是怎樣寫的方式。
我想比較並返回錯誤消息,如果它們相等。比較yii2中的兩個字段
試圖這樣而不是工作
[['HRMS_candidateAlternateEmail'], '!compare', 'compareAttribute' => 'HRMS_candidateEmail'],
會是怎樣寫的方式。
我發現它只是增加了'operator'=>'!='
,它的工作原理。
[['HRMS_candidateAlternateEmail'], 'compare', 'compareAttribute' => 'HRMS_candidateEmail','operator'=>'!='],