asp.net-mvc – 如何使用“?”路由查询字符串以及如何处理它

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 如何使用“?”路由查询字符串以及如何处理它前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在我的全局asax文件中,我想映射一个这样的路由:
http://domain.com/add/link?url=http%3A%2F%2Fgoogle.com

然后使用我的LinkController和名为Add的操作捕获它.

我这样做吗?

global.asax->

routes.MapRoute(
    "AddLink","Add/Link?{url}",new { controller = "Link",action = "Add" }
);

LinkController->

public string Add(string url)
{
    return url; // just want to output it to the webpage for testing
}

??这似乎不起作用.我究竟做错了什么?谢谢!

解决方法

ASP.Net MVC将自动绑定查询字符串中的参数;你不需要把它放在路线上.

你的路线可以简单

routes.MapRoute(
    "AddLink","Add/Link",action = "Add" }
);
原文链接:https://www.f2er.com/aspnet/247963.html

猜你在找的asp.Net相关文章