可能重複:
Can you overload controller methods in ASP.Net MVC?ASP.net C#,同名方法,它有不同的參數類型
我需要2種方法是採用不同類型的參數。所以我試過這個,
[HttpPost]
public ActionResult ItemUpdate(ORDER ln)
{
// do something
}
[HttpPost]
public ActionResult ItemUpdate(List<ORDER> lns)
{
// Do Something
}
但它不起作用。
編譯時沒有錯誤,但運行時會產生錯誤。
我如何編寫代碼以使其工作?
謝謝!
[編輯]
[HttpGet]
public ActionResult ItemUpdate(string name)
{
return Content(name);
}
[HttpGet]
public ActionResult ItemUpdate(int num)
{
return Content(num.ToString());
}
,當我打電話/測試/ ItemUpdate/
它使一個錯誤,
Server Error in '/' Application.
The current request for action 'ItemUpdate' on controller type 'OrderController' is ambiguous between the following action methods:
System.Web.Mvc.ActionResult ItemUpdate(System.String) on type Ecom.WebUI.Controllers.OrderController
System.Web.Mvc.ActionResult ItemUpdate(Int32) on type Ecom.WebUI.Controllers.OrderController
[編輯]
不匹配與ORDER甚至單個參數。
if (lns.GetType() == typeof(ORDER))
{
// always false
}else{
// also I can not cast the object.
ORDER ln = (ORDER)lns; //Unable to cast object of type 'System.Object' to type 'ORDER'
}
你得到了什麼錯誤?你想達到什麼目的? – 2012-07-18 18:49:22
我認爲你走在正確的道路上。可以使用不同的簽名來重載C#方法,比如不同的參數類型。你的編譯器是否能識別ORDER對象?它是否因爲方法不返回任何內容而出現問題(您可以暫時返回null)? – DOK 2012-07-18 18:52:33
問題是,這是MVC,請參閱:http://stackoverflow.com/questions/436866/can-you-overload-controller-methods-in-asp-net-mvc – CaffGeek 2012-07-18 18:53:51