It would be nice if when I clicked on an edit link (defined with rel=edit or method=PUT), if the current object values would be pre-filled.
For example, let's assume I have user with name and age, and I only have a PUT method to edit it (in other words, no PATCH method for partial updates). That means that all the user info defined in the schema need to be sent to the server on every PUT request. If I only want to update the age field, I'd rather not type the name again.
It would be nice if when I clicked on an edit link (defined with rel=edit or method=PUT), if the current object values would be pre-filled.
For example, let's assume I have user with name and age, and I only have a PUT method to edit it (in other words, no PATCH method for partial updates). That means that all the user info defined in the schema need to be sent to the server on every PUT request. If I only want to update the age field, I'd rather not type the name again.
Thanks!