web-dev-qa-db-ja.com

送信ボタンが押されたMVC

MVCフォームに2つのボタンがあります。

<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />

Controllerアクションから、どれが押されたかをどのように知ることができますか?

124
Coppermill

両方の送信ボタンに同じ名前を付けます

<input name="submit" type="submit" id="submit" value="Save" />
<input name="submit" type="submit" id="process" value="Process" />

次に、コントローラーでsubmitの値を取得します。クリックされたボタンのみがその値を渡します。

public ActionResult Index(string submit)
{
    Response.Write(submit);
    return View();
}

もちろん、その値を評価して、switchブロックでさまざまな操作を実行できます。

public ActionResult Index(string submit)
{
    switch (submit)
    {
        case "Save":
            // Do something
            break;
        case "Process":
            // Do something
            break;
        default:
            throw new Exception();
            break;
    }

    return View();
}
162
WDuffy
<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />

そして、コントローラーアクションで:

public ActionResult SomeAction(string submit)
{
    if (!string.IsNullOrEmpty(submit))
    {
        // Save was pressed
    }
    else
    {
        // Process was pressed
    }
}
47
Darin Dimitrov

これはより良い答えなので、ボタンのテキストと値の両方を使用できます。

http://weblogs.asp.net/dfindley/archive/2009/05/31/asp-net-mvc-multiple-buttons-in-the-same-form.aspx

</p>
<button name="button" value="register">Register</button>
<button name="button" value="cancel">Cancel</button>
</p>

およびコントローラー:

public ActionResult Register(string button, string userName, string email, string password, string confirmPassword)
{
if (button == "cancel")
    return RedirectToAction("Index", "Home");
...

要するに、SUBMITボタンですが、name属性を使用して名前を選択します。コントローラーメソッドパラメーターの名前送信またはボタンに義務付けられていないため、さらに強力です。好きなように呼び出すことができます。

33
Yakir Manor

以下のような名前タグからボタンを識別できます。コントローラーでこのように確認する必要があります

if (Request.Form["submit"] != null)
{
//Write your code here
}
else if (Request.Form["process"] != null)
{
//Write your code here
}
18
Kinjal Gohil

カスタムMultiButtonAttributeを使用して、非常に簡単で指示に従うことができる、非常に簡単で簡単な方法を次に示します。

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

要約すると、次のような送信ボタンを作成します。

<input type="submit" value="Cancel" name="action" />
<input type="submit" value="Create" name="action" /> 

このようなあなたのアクション:

[HttpPost]
[MultiButton(MatchFormKey="action", MatchFormValue="Cancel")]
public ActionResult Cancel()
{
    return Content("Cancel clicked");
}

[HttpPost]
[MultiButton(MatchFormKey = "action", MatchFormValue = "Create")]
public ActionResult Create(Person person)
{
    return Content("Create clicked");
} 

そして、このクラスを作成します:

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

    public override bool IsValidName(ControllerContext controllerContext, string actionName, MethodInfo methodInfo)
    {
        return controllerContext.HttpContext.Request[MatchFormKey] != null &&
            controllerContext.HttpContext.Request[MatchFormKey] == MatchFormValue;
    }
}
5
Owen
// Buttons
<input name="submit" type="submit" id="submit" value="Save" />
<input name="process" type="submit" id="process" value="Process" />

// Controller
[HttpPost]
public ActionResult index(FormCollection collection)
{
    string submitType = "unknown";

    if(collection["submit"] != null)
    {
        submitType = "submit";
    }
    else if (collection["process"] != null)
    {
        submitType = "process";
    }

} // End of the index method
3

簡単にするために、ボタンを次のように変更できます。

<input name="btnSubmit" type="submit" value="Save" />
<input name="btnProcess" type="submit" value="Process" />

コントローラー:

public ActionResult Create(string btnSubmit, string btnProcess)
{
    if(btnSubmit != null)
       // do something for the Button btnSubmit
    else 
       // do something for the Button btnProcess
}

彼がずっと前に答え​​られたので、この投稿はCoppermillに答えません。私の投稿は、このような解決策を求める人にとって役立つでしょう。まず、「WDuffyのソリューションは完全に正しい」と言わなければならず、それはうまく動作しますが、私のソリューション(実際には私のものではない)は他の要素で使用され、プレゼンテーション層をコントローラーからより独立させます(コントローラーが依存するためボタンのラベルを表示するために使用される「値」。この機能は他の言語にとって重要です。

ここに私の解決策があり、それらに異なる名前を付けます:

<input type="submit" name="buttonSave" value="Save"/>
<input type="submit" name="buttonProcess" value="Process"/>
<input type="submit" name="buttonCancel" value="Cancel"/>

そして、次のようなアクションの引数としてボタンの名前を指定する必要があります。

public ActionResult Register(string buttonSave, string buttonProcess, string buttonCancel)
{
    if (buttonSave!= null)
    {
        //save is pressed
    }
    if (buttonProcess!= null)
    {
        //Process is pressed
    }
    if (buttonCancel!= null)
    {
        //Cancel is pressed
    }
}

ユーザーがボタンの1つを使用してページを送信すると、引数の1つだけが値を持ちます。これは他の人にも役立つと思います。

更新

この答えはかなり古く、実際に私の意見を再考します。上記の解決策は、モデルのプロパティにパラメータを渡す状況に適しています。気にせず、プロジェクトに最適なソリューションを選択してください。

2
AAAA

両方のボタンに名前を付けて、フォームから値を確認します。

<div>
   <input name="submitButton" type="submit" value="Register" />
</div>

<div>
   <input name="cancelButton" type="submit" value="Cancel" />
</div>

コントローラー側で:

public ActionResult Save(FormCollection form)
{
 if (this.httpContext.Request.Form["cancelButton"] !=null)
 {
   // return to the action;
 }

else if(this.httpContext.Request.Form["submitButton"] !=null)
 {
   // save the oprtation and retrun to the action;
 }
}
1
Aniket Sharma

Core 2.2 Razorページでは、この構文は機能します。

    <button type="submit" name="Submit">Save</button>
    <button type="submit" name="Cancel">Cancel</button>
public async Task<IActionResult> OnPostAsync()
{
    if (!ModelState.IsValid)
        return Page();
    var sub = Request.Form["Submit"];
    var can = Request.Form["Cancel"];
    if (sub.Count > 0)
       {
       .......
1
Leftware

Request.Formコレクションを使用して見つけることはできませんか?プロセスがクリックされた場合、request.form ["process"]は空になりません

0
chugh97