删除许多带有id列表的记录 - MVC

时间:2016-07-21 01:31:55

标签: ajax asp.net-mvc entity-framework asp.net-mvc-3 asp.net-ajax

我想删除许多记录,其中id列表发送到服务器MVC。

  

IDLIST = [1,2,3,4 ...]

Ajax:

    $('#btn-delete').click(function () {
        var idlist =new Array();
        $('.ckbox').each(function () {
            if ($(this).is('checked')) {
                idlist.push(parseInt($(this).val()));
            }
        });

        $.ajax({
            type:'POST',
            url:@Url.Action("Delete","Product"),
            dataType:'json',
            contentType:'application/json',
            data:JSON.stringify(idlist)
        });

    });

在行动中(我使用实体框架):

[HttpPost]
public ActionResult (...)
{
....
}

。如何获取 idlist 并删除包含此 idlist 的记录?

0 个答案:

没有答案