Skip to content
Advertisement

Can’t get single item to delete by id from mongoDB in nextjs app

I’m making a todo app in nextjs to practice, and I am having a hard time getting single todos to delete from the database using the deleteOne function.

Here is the call from the front end:

JavaScript

and here is the handling of the DELETE method:

JavaScript

and the deleteTodo helper function it calls:

JavaScript

I can get it to delete the first item in the array of todos if I pass deleteOne an empty object, but when I try to specify the id by using { _id: id } it does not delete.

Can anyone see what is happening to cause this? Thanks.

Advertisement

Answer

I think your id passed from front-end has string type. Since _id has ObjectId type, you need to convert id string to ObjectId.

Install:

JavaScript

Import in your deleteTodo:

JavaScript

and try to change, in deleteTodo

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