【Yii】Validation scenarios
2776 단어 validation
가장 좋은 해결 방법은 서로 다른 검증 장면을 구축하고'on'을 통해 한 장면을 상응하는 규칙과 연결시키는 것이다.User Model에서 rules()의 예를 살펴보겠습니다.
public function rules() {
return array(
//Set required fields
//Applies to 'register' scenario
//Note 'on' property
array('username, password, password_repeat, email', 'required', 'on' => 'register'),
//Applies to 'recover' scenario
array('email', 'required', 'on' => 'recover'),
//Applies to all scenarios
array('username, password', 'length', 'max'=>35, 'min'=>3),
//This rule checks if the username is unique in the database in
//the 'register' scenario (we don't want it to check for uniqueness
//on the login page for instance)
array('username', 'unique', 'on' => 'register'),
//This rule applies to 'register' and 'update' scenarios
//Compares 'password' field to 'password_repeat' to make sure they are the same
array('password', 'compare', 'on' => 'register, update'),
);
}
주석을 통해 우리는 이러한 정의의 장점을 잘 이해할 수 있다.이제 우리는 CModel::validate () 방법을 호출하여 서로 다른 장면을 검증할 수 있습니다.
if ($user->validate('register')) {
$user->save(false);
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
NestJS 및 '클래스 유효성 검사기' 치트 시트NestJs와 class-validator는 API 응답을 검증하는 데 좋은 조합입니다. 둘 다 잘 문서화되어 있지만 일부 필요한 사용 사례는 개발자가 알아내야 한다고 가정하지 않습니다. 다음은 이러한 사례를 정의하...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.