//删除角色 public ActionResult <Message> DeleteRole() { string[] idsStr = Request.Form["ids"]; var msg = new Message(10, "删除失败"); var idsInt = new List <int>(); if (idsStr != null && idsStr.Count() > 0) { foreach (var id in idsStr) { if (Validator.IsNumbers(id)) { idsInt.Add(int.Parse(id)); } } msg = CMSAdminBO.DeleteRole(idsInt); } else { msg.Code = 101; msg.Msg = "请选择要删除的角色"; } return(new JsonResult(msg)); }