我有一个URL http://localhost/Home/DomSomething?t=123&s=TX
,我想将此URL路由到以下操作方法
public class HomeController
{
public ActionResult DoSomething(int taxYear,string state)
{
// do something here
}
}
由于查询字符串名称与操作方法的参数名称不匹配,因此请求未路由到操作方法。
如果我将URL(仅用于测试)更改为
http://localhost/Home/DomSomething?taxYear=123&state=TX
,则其工作正常。 (但我无权更改请求。)我知道我可以在操作方法上应用
Route
属性,该属性可以将t
映射到taxYear
和s
映射到state
。但是我没有为该映射找到Route属性的正确语法,有人可以帮忙吗?
最佳答案
选项1
如果查询字符串参数始终为t和s,则可以使用Prefix。请注意,它将不再接受taxYear和状态。
http://localhost:10096/home/DoSomething?t=123&s=TX
public ActionResult DoSomething([Bind(Prefix = "t")] int taxYear,
[Bind(Prefix = "s")] string state)
{
// do something here
}
选项2
如果您要接受两个网址,请声明所有参数,然后手动检查哪个参数具有值-
http://localhost:10096/home/DoSomething?t=123&s=TX
http://localhost:10096/home/DoSomething?taxYear=123&state=TX
public ActionResult DoSomething(
int? t = null, int? taxYear = null, string s = "", string state = "")
{
// do something here
}
选项3
如果您不介意使用第三方软件包,则可以使用ActionParameterAlias。它接受两个URL。
http://localhost:10096/home/DoSomething?t=123&s=TX
http://localhost:10096/home/DoSomething?taxYear=123&state=TX
[ParameterAlias("taxYear", "t")]
[ParameterAlias("state", "s")]
public ActionResult DoSomething(int taxYear, string state)
{
// do something here
}