我正在尝试通过angular $ http进行删除WEB API调用,我想向我的API方法发送一个ID列表。
这是我的角色呼唤。
function deleteItem(id) {
return $http({ url: delete_Url, data: {itemIds:[id]}, headers: { 'Content-Type': 'application/json' }, method: "DELETE" });
}
的WebAPI
[Route("/product/items")]
[HttpDelete]
public HttpResponseMessage RemoveItems( List<Guid> itemIds)
{
.....
}
问题是我的 itemIds列表
中没有任何内容感谢