MVC剃须刀形式有多个不同的提交按钮?

时间:2013-10-29 05:27:59

标签: c# asp.net-mvc asp.net-mvc-4 razor

Razor视图在表单中有3个按钮。所有按钮的操作都需要表单值,这些值基本上是输入字段的值。

每次单击任何按钮时,它都会将我重定向到默认操作。您能否指导我如何根据按钮提交表单到不同的操作?

我非常感谢您的时间,指导和帮助。

13 个答案:

答案 0 :(得分:84)

你也可以试试这个:

<input type="submit" name="submitbutton1" value="submit1" />
<input type="submit" name="submitbutton2" value="submit2" />

然后在默认功能中调用所需的功能:

if( Request.Form["submitbutton1"] != null)
{
    // Code for function 1
}
else if(Request.Form["submitButton2"] != null )
{
    // code for function 2
}

答案 1 :(得分:65)

这个优雅的解决方案适用于多个提交按钮:

@Html.Begin()
{
  // Html code here
  <input type="submit" name="command" value="submit1" />
  <input type="submit" name="command" value="submit2" />

}

在你的控制器的动作方法中,接受它作为参数。

public ActionResult Create(Employee model, string command)
{
    if(command.Equals("submit1"))
    {
      // Call action here...
    }
    else
    {
      // Call another action here...
    }
}

答案 2 :(得分:15)

视图中的

<form action="/Controller_name/action" method="Post>

 <input type="submit" name="btn1" value="Ok" />
 <input type="submit" name="btn1" value="cancel" />
 <input type="submit" name="btn1" value="Save" />
</form>

在行动中

string str =Request.Params["btn1"];
if(str=="ok"){


}
if(str=="cancel"){


}
if(str=="save"){


}

答案 3 :(得分:10)

您可以使用JS + Ajax。 例如,如果您有任何按钮,您可以说它在点击事件上必须执行的操作。 代码如下:

 <input id="btnFilterData" type="button" value="myBtn">

这里是html中的按钮: 在脚本部分,您需要使用此代码(此部分应位于文档的末尾):

<script type="text/javascript">
$('#btnFilterData').click(function () {
    myFunc();
});
</script>

最后,你需要添加ajax函数(在另一个脚本部分,应该放在文档的开头):

function myFunc() {
    $.ajax({
        type: "GET",
        contentType: "application/json",
        url: "/myController/myFuncOnController",
        data: {
             //params, which you can pass to yu func
        },
        success: function(result) {

        error: function (errorData) {

        }
    });
};

答案 4 :(得分:4)

我发现的最干净的解决方案如下:

这个例子是执行两个非常不同的动作;基本前提是使用该值将数据传递给操作。

在您看来:

@using (Html.BeginForm("DliAction", "Dli", FormMethod.Post, new { id = "mainForm" }))
{
    if (isOnDli)
    {
        <button name="removeDli" value="@result.WeNo">Remove From DLI</button>
    }
    else
    {
        <button name="performDli" value="@result.WeNo">Perform DLI</button>
    }
}

然后在你的行动中:

    public ActionResult DliAction(string removeDli, string performDli)
    {
        if (string.IsNullOrEmpty(performDli))
        {
            ...
        }
        else if (string.IsNullOrEmpty(removeDli))
        {
            ...
        }

        return View();
    }

此代码应易于更改,以实现主题的变化,例如:将按钮的名称更改为相同,然后您只需要操作上的一个参数等,如下所示:

在您看来:

@using (Html.BeginForm("DliAction", "Dli", FormMethod.Post, new { id = "mainForm" }))
{

        <button name="weNo" value="@result.WeNo">Process This WeNo</button>

        <button name="weNo" value="@result.WeNo">Process A Different WeNo This Item</button>
}

然后在你的行动中:

    public ActionResult DliAction(string weNo)
    {
        // Process the weNo...

        return View();
    }

答案 5 :(得分:3)

尝试在视图中以自己的形式包装每个按钮。

  @using (Html.BeginForm("Action1", "Controller"))
  {
    <input type="submit" value="Button 1" />
  }

  @using (Html.BeginForm("Action2", "Controller"))
  {
    <input type="submit" value="Button 2" />
  }

答案 6 :(得分:3)

您可以使用普通按钮(非提交)。使用javascript(在“​​onclick”事件中)将表单的“action”属性重写为您想要的内容然后提交。使用自定义帮助程序生成按钮(在项目根目录的App_Code文件夹中创建文件“Helper.cshtml”)。

@helper SubmitButton(string text, string controller,string action)
{   
    var uh = new System.Web.Mvc.UrlHelper(Context.Request.RequestContext);
    string url = @uh.Action(action, controller, null);   
    <input type=button  onclick="(
                                       function(e)
                                                 {
                                                   $(e).parent().attr('action', '@url'); //rewrite action url
                                                   //create a submit button to be clicked and removed, so that onsubmit is triggered
                                                   var form = document.getElementById($(e).parent().attr('id'));
                                                   var button = form.ownerDocument.createElement('input');
                                                   button.style.display = 'none';
                                                   button.type = 'submit';
                                                   form.appendChild(button).click(); 
                                                   form.removeChild(button);              
                                                  }
                                      )(this)" value="@text"/>
}

然后将其用作:

@Helpers.SubmitButton("Text for 1st button","ControllerForButton1","ActionForButton1")
@Helpers.SubmitButton("Text for 2nd button","ControllerForButton2","ActionForButton2")
...

在表单中。

答案 7 :(得分:1)

最简单的方法是使用html5 FormActionFormMethod

<input type="submit" 
           formaction="Save"
           formmethod="post" 
           value="Save" />
    <input type="submit"
           formaction="SaveForLatter"
           formmethod="post" 
           value="Save For Latter" />
    <input type="submit"
           formaction="SaveAndPublish"
           formmethod="post"
           value="Save And Publish" />

[HttpPost]
public ActionResult Save(CustomerViewModel model) {...}

[HttpPost]
public ActionResult SaveForLatter(CustomerViewModel model){...}

[HttpPost]
public ActionResult SaveAndPublish(CustomerViewModel model){...}

我们可以使用许多其他方法,请参阅此文章ASP.Net MVC multiple submit button use in different ways

答案 8 :(得分:1)

这对我有用。

formaction="@Url.Action("Edit")"

摘录:

 <input type="submit" formaction="@Url.Action("Edit")" formmethod="post" value="Save" class="btn btn-primary" />

<input type="submit" formaction="@Url.Action("PartialEdit")" formmethod="post" value="Select Type" class="btn btn-primary" />

 [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult Edit( Quote quote)
        {
           //code 
       }
 [HttpPost]
        [ValidateAntiForgeryToken]
        public ActionResult PartialEdit(Quote quote)
        {
           //code
        }

可以帮助一个想要拥有2种不同操作方法的人,而不是使用选择器或使用客户端脚本的一种方法。

答案 9 :(得分:0)

这个答案将向您展示如何使用razor在asp.net中工作,并控制多个提交按钮事件。比如我们有两个按钮,一个按钮会将我们重定向到“PageA.cshtml”,其他按钮会将我们重定向到“PageB.cshtml”。

@{
  if (IsPost)
    {
       if(Request["btn"].Equals("button_A"))
        {
          Response.Redirect("PageA.cshtml");
        }
      if(Request[&quot;btn"].Equals("button_B"))
        {
          Response.Redirect(&quot;PageB.cshtml&quot;);
        }
  }
}
<form method="post">
   <input type="submit" value="button_A" name="btn"/>;
   <input type="submit" value="button_B" name="btn"/>;          
</form>

答案 10 :(得分:0)

如果您使用纯剃须刀,即没有MVC控制器:

<button name="SubmitForm" value="Hello">Hello</button>
<button name="SubmitForm" value="World">World</button>
@if (IsPost)
{
    <p>@Request.Form["SubmitForm"]</p>
}

单击每个按钮应呈现Hello和World。

答案 11 :(得分:0)

没有使用标记助手(Core MVC)看到答案,所以这里(对于删除操作):

在HTML上:

<form action="" method="post" role="form">
<table>
@for (var i = 0; i < Model.List.Count(); i++)
{
    <tr>
        <td>@Model.List[i].ItemDescription</td>
        <td>
            <input type="submit" value="REMOVE" class="btn btn-xs btn-danger" 
             asp-controller="ControllerName" asp-action="delete" asp-route-idForDeleteItem="@Model.List[i].idForDeleteItem" />
        </td>
    </tr>
}
</table>
</form>

在控制器上:

[HttpPost("[action]/{idForDeleteItem}"), ActionName("Delete")]
public async Task<IActionResult> DeleteConfirmed(long idForDeleteItem)
{
    ///delete with param id goes here
}

不要忘记在类声明之前使用[Route("[controller]")] - 在控制器上。

答案 12 :(得分:0)

以及@Pablo的答案,对于较新的版本,您还可以使用asp-page-handler标记帮助器。

在页面中:

<button asp-page-handler="Action1" type="submit">Action 1</button>
<button asp-page-handler="Action2" type="submit">Action 2</button>

然后在控制器中:

    public async Task OnPostAction1Async() {...}
    public async Task OnPostAction2Async() {...}