无法通过 restangular 在快速删除中获得 json 请求?

Not able to get json request in express delete with restangular?

这是我用来删除对象的 restangular 代码

$scope.delO = (id){
  Restangular
    .one("footer",id)
    .get()
    .then((ob)=>{
      ob.remove();
    }
    .catch....
}

正如我在浏览器中验证的那样,请求正在正确发送。这是快递码

route.delete("/",(req,res,next)=>{
  console.log(req.body);
  helper['del'](req.body._id)
    .then(()=>{
      res.status(200).end();
    })
    .catch((err)=>{
      res.status(400).json({err:err.message});
    });
});

req.body 是空的。根据question here我看应该是在参数里面。

谁能解释一下我哪里错了?

编辑

为了消除一些混淆,这里是浏览器的屏幕截图

DELETE动词中不能有数据post。所以为了让上面的代码工作,我不得不将它修改为

  $scope.delExisting = ()=>{
    console.log($scope.form._id);
    Restangular
      .one("footer/"+$scope.form._id)
      .remove()
      .then((data)=>{
        $scope.list();
      })
      .catch((err)=>{
        console.log("Error");
      });
  }

并且在 express 上取而代之的是要从 uri 中删除的元素的 id