我使用的是蛋糕2.3.8版本。我有一個註冊表格,用戶可以在表格中輸入用戶名和密碼。 我的模型驗證的樣子:cakephp錯誤 - 驗證顯示兩次
public $validate = array(
'username' => array(
'required' => array(
'rule' => array('notEmpty'),
'message' => 'A username is required'
),
'alphanumeric' => array(
'rule' => 'alphaNumeric',
'message' => 'Usernames must only contain letters and numbers.'
)
),
'password' => array(
'required' => array(
'rule' => array('notEmpty'),
'message' => 'A password is required'
)
));
現在奇怪的是在my site當我與它空間的用戶名輸入,顯示兩次驗證。但是,當我使用家庭註冊表單並輸入包含空格的用戶名時,驗證錯誤只顯示一次。有誰知道可能是什麼問題?
沒有您的視圖代碼,不可能說(wat ...'這個網站最適用於Internet Explorer 9或更高版本。) – AD7six