|
|
|
|
|
by thraxil
1055 days ago
|
|
> This does a POST each time, albeit automatically on typing. It still means a lag for a kind of validation that could have been done client side. If you can accept that lag, the tradeoff is that you only have to write the validation logic once, in one language. Furthermore, if your validation includes something like "check that this username isn't already registered" that requires server-side logic, you're stuck with that POST request and lag anyway. |
|