So is it safe to validate form on client-side only?

前端 未结 3 995
一整个雨季
一整个雨季 2020-12-16 19:48

Of course, I know that server-side validation is a MUST.

I\'m using jQuery to validate form inputs and using jquery ajax to do server-side(PHP) va

相关标签:
3条回答
  • 2020-12-16 20:24

    My rules are fairly simple...

    1. If you care about your data, then you must validate on the server.
    2. If you care about your user experience, then you must validate on the client.
    0 讨论(0)
  • 2020-12-16 20:32

    No, it is not safe. You should always validate your data on the server side, after the form has been submitted. Client-side validation and AJAX validation before submitting the form are only enhancing the user experience, by providing quicker feedback on invalid data. Both client-side validation and AJAX pre-submit validation do not and can not protect you from a maliciously crafted form submission. Attackers and abusers usually don't even use a browser in order to submit data to your server.

    0 讨论(0)
  • 2020-12-16 20:35

    Since javascript is readable for any visitor, and easily editable with the newest browsers, anyone with a bit programming skills can bypass your javascript validation in no time. So you should validate on the server side also, always.

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