|
|
|
|
|
by mplewis
2686 days ago
|
|
In React, forms are often built with this pattern: * Type/change events fire on the field (e.g. username) * Username updates the internal model (this.username = 'karthikksv') * The submit button fires an event so the parent page can act on the entire data model ({ username: 'karthikksv', password: 'fluffykittens' }) I'm concerned that this model won't work well using server-side React components on a network with high latency – each type event would have to round-trip to the server to update in the DOM. |
|
If you don't need to send each letter, it's recommended to not do so; the submit event object includes all form data, so you can do one final validation at the end, similar to what you'd do with a normal web server.