如何删除名为任务的子文档?父架构是用户,子架构名为任务。
这是我的路线:
app.delete('/api/tasks/:id', isAuthenticated, function (req, res) {
User.update({ 'task._id': req.params.id }, { $pull: { 'task.$.id': req.params.id }},
(function(err, user) {
if(!err) {
console.log("Deleted Task" ),
res.redirect('/home');
}
})
);
});
还有一点ajax:
// Delete
$(document).ready(function() {
$('.task-delete').click(function(event) {
$target = $(event.target)
$.ajax({
type: 'DELETE',
url: apiDeleteTask + $target.attr('data-task-id'),
success: function(response) {
$target.parent.children.id(id).remove();
$alert.trigger('success', 'Task was removed.');
},
error: function(error) {
$alert.trigger('error', error);
}
})
});
})
为什么这不起作用?