My back end is my Rails server which sends JSON data to my front end. In the front end, I am using javascript and jQuery which processes my JSON data and displays some of it.
Now, the user can inputs a number depending on the data displayed to it.
So, on the basis of input from user, certain changes are made to JSON data received earlier and send it back to my back-end as properly encoded JSON.
My question is how can I process this JSON data at the server and store the inputs filled by the user?