• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ASP.NETMVC中实现多个button提交的几种方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请


有时候会遇到这样的情况:在一个表单上须要多个button来完毕不同的功能,比方一个简单的审批功能。


假设是用webform那不须要讨论,但asp.net mvc中一个表单仅仅能提交到一个Action处理,相对照较麻烦点。


方法一:使用client脚本

比方我们在View中这样写:


在点击提交button时,先改变Form的action属性,使表单提交到button对应的action处理。

但有的时候,可能Action1和2的逻辑很类似,或许仅仅是将某个字段的值置为1或者0,那么分开到二个action中又显得有点多余了。

方法二:在Action中推断通过哪个button提交

在View中,我们不用不论什么client脚本处理,给每一个提交button加好name属性:


然后在控制器中推断:

[HttpPost]
    public ActionResult Index(string action /* 其他參数*/)
    {
        if (action=="审核通过")
        {
            //
        }
        else if (action=="审核不通过")
        {
//
        }
        else
        {
            //
        }
    }

几年前写asp代码的时候经经常使用这个方案…

View变得简单的,Controller复杂了。

太依赖说View,会存在一些问题。假若哪天客户说button上的文字改为“通过审核”,或者是做个多语言版的,那就麻烦了。

參考:http://www.ervinter.com/2009/09/25/asp-net-mvc-how-to-have-multiple-submit-button-in-form/


方法三:使用ActionSelector

关于ActionSelector的基本原理能够先看下这个POST使用ActionSelector控制Action的选择

使用此方法,我们能够将控制器写成这样:

[HttpPost]
[MultiButton("action1")]
public ActionResult Action1()
{
    //
    return View();
}
[HttpPost]
[MultiButton("action2")]
public ActionResult Action2()
{
    //
    return View();
}

在 View中:


此时,Controller已经无须依赖于button的Value值。

MultiButtonAttribute的定义例如以下:

public class MultiButtonAttribute : ActionNameSelectorAttribute
{
    public string Name { get; set; }
    public MultiButtonAttribute(string name)
    {
        this.Name = name;
    }
    public override bool IsValidName(ControllerContext controllerContext,
        string actionName, System.Reflection.MethodInfo methodInfo)
    {
        if (string.IsNullOrEmpty(this.Name))
        {
            return false;
        }
        return controllerContext.HttpContext.Request.Form.AllKeys.Contains(this.Name);
    }
}

參考:http://blog.maartenballiauw.be/post/2009/11/26/Supporting-multiple-submit-buttons-on-an-ASPNET-MVC-view.aspx

方法四、改进

Thomas Eyde就方法三的方案给出了个改进版:

Controller:

[HttpPost] 
[MultiButton(Name = "delete", Argument = "id")] 
public ActionResult Delete(string id) 
{ 
    var response = System.Web.HttpContext.Current.Response; 
    response.Write("Delete action was invoked with " + id); 
    return View(); 
} 

View:

MultiButtonAttribute定义:

[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)] 
    public class MultiButtonAttribute : ActionNameSelectorAttribute 
    { 
        public string Name { get; set; } 
        public string Argument { get; set; } 

        public override bool IsValidName(ControllerContext controllerContext, string 
                                         actionName, MethodInfo methodInfo) 
        { 
            var key = ButtonKeyFrom(controllerContext); 
            var keyIsValid = IsValid(key); 

            if (keyIsValid) 
            { 
                UpdateValueProviderIn(controllerContext, ValueFrom(key)); 
            } 

            return keyIsValid; 
        } 

        private string ButtonKeyFrom(ControllerContext controllerContext) 
        { 
            var keys = controllerContext.HttpContext.Request.Params.AllKeys; 
            return keys.FirstOrDefault(KeyStartsWithButtonName); 
        } 

        private static bool IsValid(string key) 
        { 
            return key != null; 
        } 

        private static string ValueFrom(string key) 
        { 
            var parts = key.Split(":".ToCharArray()); 
            return parts.Length < 2 ? null : parts[1]; 
        } 

        private void UpdateValueProviderIn(ControllerContext controllerContext, 
                                            string value) 
        { 
            if (string.IsNullOrEmpty(Argument)) return; 
            controllerContext.Controller.ValueProvider[Argument] = new ValueProviderResult
                                                     (value, value, null); 
        } 

        private bool KeyStartsWithButtonName(string key) 
        { 
            return key.StartsWith(Name, StringComparison.InvariantCultureIgnoreCase); 
        } 
    } 

//假设是在MVC 2.0中的话,将UpdateValueProviderIn方法改为:

private void UpdateValueProviderIn(ControllerContext controllerContext, string value)
{
    if (string.IsNullOrEmpty(Argument))
        return;
    controllerContext.RouteData.Values[this.Argument] = value;
}






鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Asp.NETMVCJSON序列化问题发布时间:2022-07-10
下一篇:
Asp.NetCore工作单元UnitOfWorkUOW发布时间:2022-07-10
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap