当前位置: 代码迷 >> VC/MFC >> MVC Action,Service中罗选int 和list<int>
  详细解决方案

MVC Action,Service中罗选int 和list<int>

热度:140   发布时间:2016-05-02 03:19:41.0
MVC Action,Service中筛选int 和list<int>

action:

     public ActionResult DeleteByID(int id)        {            this.MessageService.DeleteMailTemplate(id);            var from = Request["from"];            return RedirectToAction("TemplateIndex", new { from = from });        }        public ActionResult DeleteByID(List<int> ids)        {            return this.Stop("判断情况是否一致", Request.UrlReferrer.AbsolutePath, true);        }

 这两个响应会产生报错,


 

而在方法中Service:

 

则是回对两种进行分别的,不会将int看做list<int>型。。(这就跟讲废话一样)

 

不过,action中不进行区分int 和list<int>记住这点就好了。

 

  相关解决方案