How to edit a JSON object as a form in a browser

I have a repository that returns a JSON object. I want to show a JSON object as a form with a value that can be changed. In addition, the user can add new pairs of key values ​​to an existing object and send a new JSON object to be sent to the API.

Are there existing libraries or tools that allow me to do this. I am looking for minimal code in Javascript.

+4
source share
1 answer

https://github.com/caolan/forms from http://substack.net/posts/24ab8c might just be the tools you are looking for!

0
source

All Articles