app.delete('/poems/delete:ids',(req,res,next)=>{
//here req.params.ids carries the multiple id i.e 1,2,3
});
In the above code, how can I delete all data with the requested ids that is the data's containing ids 1,2,3
this.http.delete('http://localhost:3000/poems/delete' + ['1','3','4']);