如何在 RouteTable MVC.Net 中手动查找路由?

发布于 2024-10-16 19:24:13 字数 166 浏览 0 评论 0原文

我的一个控制器的操作中有一个字符串,代表引用 URL。当前请求的路由数据不是我正在寻找的(因为它是从另一个视图内的脚本标记调用的)。

我想找到引用 URL 的操作和控制器。

有什么方法可以手动使用“/Product/23”之类的字符串来查找控制器并将该字符串作为 url 产生的操作吗?

I have a String inside the action of one of my controllers that represents a Referring URL. The current request's route data is not what I'm looking for (because it is being called from the script tag inside another view).

I want to find the Action and Controller for the referring Url.

Is there some way can I manually use a string like "/Product/23" to find the controller and action the string as a url would produce?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

甜点 2024-10-23 19:24:13

如果您只想使用 MVC 方法,我可以使用它。

            Uri returnUri = new Uri(returnUrl, UriKind.RelativeOrAbsolute);
            if (!returnUri.IsAbsoluteUri)
            {
                returnUri = new Uri("http://localhost" + returnUrl); // localhost used just to get absolute URL
            }
            HttpContextWrapper httpContext = new HttpContextWrapper(
                new HttpContext(new HttpRequest(String.Empty, returnUri.AbsoluteUri, String.Empty), new HttpResponse(TextWriter.Null))
                );
            RouteData routeData = RouteTable.Routes.GetRouteData(httpContext);

If you just want to use the MVC methods I got this to work.

            Uri returnUri = new Uri(returnUrl, UriKind.RelativeOrAbsolute);
            if (!returnUri.IsAbsoluteUri)
            {
                returnUri = new Uri("http://localhost" + returnUrl); // localhost used just to get absolute URL
            }
            HttpContextWrapper httpContext = new HttpContextWrapper(
                new HttpContext(new HttpRequest(String.Empty, returnUri.AbsoluteUri, String.Empty), new HttpResponse(TextWriter.Null))
                );
            RouteData routeData = RouteTable.Routes.GetRouteData(httpContext);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文