![]() |
Issue with Model Validation - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28) +--- Forum: CodeIgniter 4 Support (https://forum.codeigniter.com/forumdisplay.php?fid=30) +--- Thread: Issue with Model Validation (/showthread.php?tid=90809) |
Issue with Model Validation - osawayn - 05-07-2024 When using the Model validation features in CodeIgniter 4, I'm finding that some of the validation rules aren't working as expected. For instance, the "required" rule doesn't seem to be triggering the expected validation error when the field is left empty. Additionally, the "valid_email" rule also doesn't appear to be validating the email format correctly. Steps Taken: 1. I've verified that the validation rules are correctly defined in the model. 2. I've confirmed that the fields being validated are present in the form submission data. 3. I've reviewed the official documentation and compared my implementation with the examples provided. Code: // Sample validation rules in the model Thanks in advance! RE: Issue with Model Validation - kenjis - 05-07-2024 Validation should work with your case unless $skipValidation is true. https://codeigniter4.github.io/CodeIgniter4/models/model.html#skipvalidation But I personally recommend not using validation in model because of its complexity. |