c#:Asp.net WebApi到index.html的默认路由

前端之家收集整理的这篇文章主要介绍了c#:Asp.net WebApi到index.html的默认路由前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试创建一个 Asp.net WebApi /单页面应用程序.如果没有给出路由,我希望我的服务器分配index.html.我希望它以正常的“{controller} / {id}”方式指定一个控制器.

我意识到我可以使用http://localhost:555/index.html访问我的索引页面.如何通过访问http://localhost:555来做同样的事情?

解决方法

只需为您的WebApiConfig文件添加一个路径以获取索引页面.您的方法应如下所示:
public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {
            // Attribute routing
            config.MapHttpAttributeRoutes();

            // Route to index.html
            config.Routes.MapHttpRoute(
                name: "Index",routeTemplate: "{id}.html",defaults: new {id = "index"});

            // Default route
            config.Routes.MapHttpRoute(
                name: "DefaultApi",routeTemplate: "api/{controller}/{id}",defaults: new { id = RouteParameter.Optional }
            );
        }
    }
原文链接:https://www.f2er.com/csharp/243041.html

猜你在找的C#相关文章