Passing forms vs raw input to service layer

前端 未结 1 1589
囚心锁ツ
囚心锁ツ 2021-01-28 01:06

Is it better to validate a form and pass its filtered input to the service layer, or to pass the raw input to the service layer, and have the service validate the input (with or

1条回答
  •  清酒与你
    2021-01-28 01:17

    The Form itself should handle the validation, ZF2 has methods on the Form class that enable this.

    In an action on a controller that expects some kind of data from a form one of the first things I do is validate the form ($form->isValid()). If the form is not valid the controller will handle this immediately. Normally this involves jumping straight to returning the ViewModel with the form (which now contains data + validation results) so that the user can see any validation errors.

    I don't see why'd you bother going any further without checking to see if you've got valid data or with data you know to be invalid. In fact the data might even be malicious (CSRF, which is handled by form validation).

    Basically the issue of passing raw vs filtered input never really comes up.

    0 讨论(0)
提交回复
热议问题