如何传递MVC控制器中定义的多个参数?

时间:2016-03-14 05:25:27

标签: asp.net-mvc

如果我有一个MVC的方法,如下所示:

public ActionResult MVCMethod(string a,string b)
{……}

如何在内容中传递两个参数?或者我必须定义我的函数,如下所示,然后使用一个内容传递给a,从uri传递给b?

 public ActionResult MVCMethod([FromBody]string a,string b)
    {……}

另一个问题是 - MVC是否不支持使用相同方法的重载函数?类似这样的事情:

public ActionResult MethodTest(string a,string b){……}
public ActionResult MethodTest(string a){……}
public ActionResult MethodTest(string a,string b,string c){……}

0 个答案:

没有答案