溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

ASP.NET MVC中怎么實現(xiàn)多個按鈕提交

發(fā)布時間:2021-07-16 15:26:00 來源:億速云 閱讀:164 作者:Leah 欄目:開發(fā)技術(shù)

ASP.NET MVC中怎么實現(xiàn)多個按鈕提交,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

方法一:使用客戶端腳本 

比如我們在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")%>" />

在點(diǎn)擊提交按鈕時,先改變Form的action屬性,使表單提交到按鈕相應(yīng)的action處理。 

但有的時候,可能Action1和2的邏輯非常類似,也許只是將某個字段的值置為1或者0,那么分開到二個action中又顯得有點(diǎn)多余了。 

方法二:在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 /* 其它參數(shù)*/)
 {
  if (action=="審核通過")
  {
   //
  }
  else if (action=="審核不通過")
  {
//
  }
  else
  {
   //
  }
 }

幾年前寫asp代碼的時候經(jīng)常用這樣的方法… 

View變得簡單的,Controller復(fù)雜了。

 太依賴說View,會存在一些問題。假若哪天客戶說按鈕上的文字改為“通過審核”,或者是做個多語言版的,那就麻煩了。 

 方法三:使用ActionSelector 

關(guān)于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已經(jīng)無須依賴于按鈕的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);
 }
}

方法四:改進(jìn)

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;
}

看完上述內(nèi)容,你們掌握ASP.NET MVC中怎么實現(xiàn)多個按鈕提交的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI