In coding a traditional MVC application, what is the best practice for coding server-side form validations? Does the code belong in the controller, or the model layer? And why?
|
|
|
|
|
|
|
From Wikipedia:
Thus, model - it holds the application and the business rules. |
||
|
|
|
|
Hi, I completely agree with Josh. However you may create a kind of validation layer between Controller and Model so that most of syntactical validations can be carried out on data before it reaches to model. For example, The validation layer would validate the date format, amount format, mandatory fields, etc... So that model would purely concentrate on business validations like x amount should be greater than y amount. |
||
|
|
|
|
My experience with MVC thus far consists of entirely rails. Rails does it's validation 100% in the Model. There are some areas however where what you're submitting from a form doesn't match up with your model properly. There may be some additional filtering/rearranging or so on. The best way to solve these situations I've found is to create faux-model objects, which basically act like Model objects but map 1-to-1 with the form data. These faux-model objects don't actually save anything, they're just a bucket for the data with validations attached. Once the data gets into those (and is valid) it's usually a pretty simple step to transfer it directly across to your actual models. |
||
|
|
|
|
The basic syntax check should be in the control as it translates the user input for the model. The model needs to do the real data validation. |
||
|
|
