如何使用 Restangular 发送资源集合?

How to send a resource collection using Restangular?

假设我想向 /products 之类的资源发送 DELETE 请求,并且我想删除多个产品。

整个请求将指向以下 URI:/products/ids=1&ids=2&ids=3

如何使用 Restangular 发出上述请求?

目前,问题是 customDELETE 使用对象接收查询字符串参数。因此,它不能多次定义相同的参数...

终于很简单了:

products.one().customDELETE(null, { ids: [1,2,3,5] } });