gpt4 book ai didi

c# - 手动通过modelbinder传递一个url获取RouteData参数

转载 作者:行者123 更新时间:2023-11-30 23:30:28 24 4
gpt4 key购买 nike

我有一个复杂的 ASP.NET MVC 路由场景,我希望能够使用现有路由解析从“Referrer”请求 header 中提取的 URL。

我有这样的传入请求:

http://hostname/{scope}/{controller}/{action}

有对应的路由映射:


路线.MapRoute(
名称:“范围”,
网址:“{scope}/{controller}/{action}/{id}”,
默认值:new { controller = "Equipment", action = "Index", id = UrlParameter.Optional, scope = "shared"}
);

在我的 Controller 基类的 OnActionExecuting 方法中,我从 RouteData 中提取结果 scope:

var scope= (filterContext.RouteData.Values["scope"] as string).ToLower();

然后我使用作用域为我的数据库查询构造一些过滤器。在我将所有返回 Json 的方法移至一组单独的 WebApi2 Controller 之前,一切都运行良好。我现在也有一条路线:

配置.Routes.MapHttpRoute( 名称:“DefaultApi”, routeTemplate: "api/{controller}/{action}");

现在所有 ajax 请求都发送到 api Controller ,这意味着我没有可用的 scope 值。我想通过使用请求 header 中的“Referrer”URL 来解决这个问题,该 URL 通常是包含 scope 的 URL。

当 ApiController 初始化时,我想做的是这样的事情:

public void PullCurrentScopeDomainFromRequestHeader(System.Net.Http.Headers.HttpRequestHeaders headers) {
var refererUrl = headers.GetValues("Referer").First();

//do some magic to get the scope

}

困难在于范围也可以有一个默认值(“共享”),以防像“http://hostname/controller/action”这样的 url 被传入。从任何 URL 获取范围的最佳(和 DRYest)方法,将以某种方式使用我在路由配置中映射的“作用域”路由以某种方式解析 URL。我只是不知道该怎么做。谁能帮忙?

最佳答案

您只需要根据您的 URL 构建一个伪造的 HTTP 上下文,然后使用静态 RouteTable 将 URL 解析为 RouteValueDictionary

// Create a fake HttpContext using your URL
var uri = new Uri("http://hostname/controller/action", UriKind.Absolute);
var request = new HttpRequest(
filename: string.Empty,
url: uri.ToString(),
queryString: string.IsNullOrEmpty(uri.Query) ? string.Empty : uri.Query.Substring(1));

// Create a TextWriter with null stream as a backing stream
// which doesn't consume resources
using (var nullWriter = new StreamWriter(Stream.Null))
{
var response = new HttpResponse(nullWriter);
var httpContext = new HttpContext(request, response);
var fakeHttpContext = new HttpContextWrapper(httpContext);

// Use the RouteTable to parse the URL into RouteData
var routeData = RouteTable.Routes.GetRouteData(fakeHttpContext);
var values = routeData.Values;

// The values dictionary now contains the keys and values
// from the URL.

// Key | Value
//
// controller | controller
// action | action
// id | {}

}

请注意,您还可以通过指定名称来使用 RouteTable 中的特定路由。

var routeData = RouteTable.Routes["scoped"].GetRouteData(fakeHttpContext);

关于c# - 手动通过modelbinder传递一个url获取RouteData参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34977352/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com