ASP.NET MVC 2.0 + Реализация IRouteHandler не запускается - PullRequest
3 голосов
/ 14 марта 2010

Может кто-нибудь, пожалуйста, помогите мне с этим, поскольку я понятия не имею, почему public IHttpHandler GetHttpHandler (RequestContext requestContext) не выполняется. В моем Global.asax.cs у меня есть

public class MvcApplication : System.Web.HttpApplication
{
    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            "Default",                                              // Route name
            "{controller}/{action}/{id}",                           // URL with parameters
            new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
        );

        routes.Add("ImageRoutes", new Route("Images/{filename}", new CustomRouteHandler()));

    }

    protected void Application_Start()
    {
        RegisterRoutes(RouteTable.Routes);
    }
}

// Реализация CustomRouteHandler ниже

public class CustomRouteHandler : IRouteHandler
{
    public IHttpHandler GetHttpHandler(RequestContext requestContext)
    {
        // IF I SET A BREAK POINT HERE IT DOES NOT HIT FOR SOME REASON.  
        string filename = requestContext.RouteData.Values["filename"] as string;

        if (string.IsNullOrEmpty(filename))
        {
            // return a 404 HttpHandler here 
        }
        else
        {
            requestContext.HttpContext.Response.Clear();
            requestContext.HttpContext.Response.ContentType = GetContentType(requestContext.HttpContext.Request.Url.ToString());

            // find physical path to image here.   
            string filepath = requestContext.HttpContext.Server.MapPath("~/logo.jpg");

            requestContext.HttpContext.Response.WriteFile(filepath);
            requestContext.HttpContext.Response.End();

        }
        return null;
    }
}

Может ли кто-нибудь сказать мне, что мне здесь не хватает. Просто public IHttpHandler GetHttpHandler (RequestContext requestContext) не запускается.

Я тоже ничего не изменил в web.config. Что мне здесь не хватает? Пожалуйста, помогите.

1 Ответ

4 голосов
/ 14 марта 2010
routes.MapRoute(
    "Default",                                              // Route name
    "{controller}/{action}/{id}",                           // URL with parameters
    new { controller = "Home", action = "Index", id = "" }  // Parameter defaults
);

routes.Add("ImageRoutes", new Route("Images/{filename}", new CustomRouteHandler()));

Вам нужно перевернуть эти две декларации. {controller} / {action} / {id} , вероятно, соответствует входящему URL-адресу, поэтому вам необходимо объявить ваши специальные Изображения / {имя_файла} перед ним.

...