我嘗試定義差異PARAMS,但它不工作的行動:如何在不同參數的情況下定義動作? - asp.net mvc4
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
public ActionResult Index(string name)
{
return new JsonResult();
}
public ActionResult Index(string lastname)
{
return new JsonResult();
}
public ActionResult Index(string name, string lastname)
{
return new JsonResult();
}
public ActionResult Index(string id)
{
return new JsonResult();
}
}
,但我得到的錯誤:
行動上控制器類型「的HomeController」「索引」的當前請求是下面的操作方法之間的曖昧....
編輯:
如果不可能,請建議最好方法來做到這一點。
感謝,
優素福
謝謝,yopu能舉些例子給我,我寫了呢? – Yosef