Skip to content
Advertisement

How can I put input value to the JSON in node.js file

I was making the TODO list web application.

This is the ‘todo.html’ code below :

JavaScript

And this is the ‘app.js’ file below :

JavaScript

I want to pass the text box value to the JSON filter by ‘TODO’ and ‘COMPLETED’.
If I add a new TODO list, it goes to the JSON and if the value goes to COMPLETED, it also goes to the JSON

This is the sample JSON result I want:

JavaScript


This is just an example so you guys can just change the format.
Feel free to give me feedback from everything it’s always welcome. btw I just started studying how to code
Thank you for spending time on this even if you didn’t help me and have a great day!

Advertisement

Answer

What you have to do is simply make an Ajax Call to Nodejs APIs. For example,to '/task' and pass the input field value as params in json format then simply fetch them on in Nodejs as req.params.yourjsonKeys.

JavaScript

Next, once you have the params, all you have to do is write it into your file using file system like so:

Create a javascript object with the table array in it

JavaScript

Add some data to it like

JavaScript

Convert it from an object to string with stringify

JavaScript

if you want to append it read the json file and convert it back to an object

JavaScript

Complete Code:

JavaScript
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement