Skip to content
Advertisement

Could not make POST request to add comments to my backend server

I am new to express and router. When I try to add a comment to the database, the console returned the error ("Post 400 Bad request" and "Uncaught in Promise"). I’ve tried many solutions but it doesn’t work. I think it is to do with my routing.

Below is my profilesRouter.js in the backend folder:

JavaScript

Here is my profilesController.js in the backend folder.

JavaScript

On the other hand, for my frontend folder: Here is my App.js:

JavaScript

Upon clicking on individual profiles, it will bring me to Single.js

JavaScript

Data is being stored in profile.json without the comments: [{"PROFILE_NUMBER": "A123", "NAME": "X", "AGE" : "21", "HOBBY" : "RUN"} , .....]

I am quite new and not sure how to debug it and push my comments into the database.

Advertisement

Answer

Try in this method

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