ASP.NET MVC实现多个按钮提交的方法
程序员文章站
2023-08-17 15:08:18
有时候会遇到这种情况:在一个表单上需要多个按钮来完成不同的功能,比如一个简单的审批功能。
如果是用webform那不需要讨论,但asp.net mvc...
有时候会遇到这种情况:在一个表单上需要多个按钮来完成不同的功能,比如一个简单的审批功能。
如果是用webform那不需要讨论,但asp.net mvc中一个表单只能提交到一个action处理,相对比较麻烦点。
方法一:使用客户端脚本
比如我们在view中这样写:
<inputtype="submit"value="审核通过"onclick='this.form.action="<%=url.action("action1")%>/> <inputtype="submit"value="审核不通过"onclick='this.form.action="<%=url.action("action2")%> /> <inputtype="submit"value="返回"onclick='this.form.action="<%=url.action("action3")%>" />
在点击提交按钮时,先改变form的action属性,使表单提交到按钮相应的action处理。
但有的时候,可能action1和2的逻辑非常类似,也许只是将某个字段的值置为1或者0,那么分开到二个action中又显得有点多余了。
方法二:在action中判断通过哪个按钮提交
在view中,我们不用任何客户端脚本处理,给每个提交按钮加好name属性:
<input type="submit" value="审核通过" name="action" /> <input type="submit" value="审核不通过" name="action"/> <input type="submit" value="返回" name="action"/>
然后在控制器中判断:
[httppost] public actionresult index(string action /* 其它参数*/) { if (action=="审核通过") { // } else if (action=="审核不通过") { // } else { // } }
几年前写asp代码的时候经常用这样的方法…
view变得简单的,controller复杂了。
太依赖说view,会存在一些问题。假若哪天客户说按钮上的文字改为“通过审核”,或者是做个多语言版的,那就麻烦了。
方法三:使用actionselector
关于actionselector的基本原理可以先看下这个post使用actionselector控制action的选择。
使用此方法,我们可以将控制器写成这样:
[httppost] [multibutton("action1")] public actionresult action1() { // return view(); } [httppost] [multibutton("action2")] public actionresult action2() { // return view(); }
在 view中:
<input type="submit" value="审核通过" name="action1" /> <input type="submit" value="审核不通过" name="action2"/> <input type="submit" value="返回" name="action3"/>
此时,controller已经无须依赖于按钮的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); } }
方法四:改进
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:
<input type="submit" value="not important" name="delete" /> <input type="submit" value="not important" name="delete:id" />
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; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Yii2框架中一些折磨人的坑
推荐阅读
-
php实现表单多按钮提交action的处理方法
-
ASP.NET实现MVC中获取当前URL、controller及action的方法
-
ASP.Net MVC+Data Table实现分页+排序功能的方法
-
asp.net mvc 实现文件上传带进度条的思路与方法
-
ASP.NET MVC实现多个按钮提交的方法
-
ASP.NET MVC分页的实现方法
-
浅谈Asp.net Mvc之Action如何传多个参数的方法
-
浅谈ASP.NET MVC 防止跨站请求伪造(CSRF)攻击的实现方法
-
ASP.NET实现MVC中获取当前URL、controller及action的方法
-
Asp.net MVC scheduler的实现方法详解