asp.net-web-api – asp.net webapi 2属性路由不工作

前端之家收集整理的这篇文章主要介绍了asp.net-web-api – asp.net webapi 2属性路由不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有visual studio 2012安装与mvc4使用.net框架4.5。现在我想使用webapi2与属性写入,我希望我的hlep页面正确显示所有的端点。

在我的解决方案中,我添加了一个新的mvc4基础emtpy项目,并使用nuget我升级到mvc5,然后我已经安装了webapi2软件包。最后我已经安装了webapi2的帮助包。

现在当我使用routeprefix我无法看到帮助页面上的任何内容,当我尝试访问我的webapi端点在浏览器它会引发以下错误

http://expressiis.com/api/v1/

<Error>
    <Message>
    No HTTP resource was found that matches the request URI 'http://expressiis.com/api/v1/'.
    </Message>
    <MessageDetail>
    No type was found that matches the controller named 'v1'.
    </MessageDetail>
    </Error>

namespace WebApi.Controllers
{
    [RoutePrefix("api/v1")]
    public class SubscribersController : ApiController
    {
        // GET api/<controller>   
        [Route("")]
        [HttpGet]
        public IQueryable<string> Get()
        {
            return new string[] { "value1","value2" }.AsQueryable();
        }


    }
}

解决方法

根据您的信息,看起来您没有调用httpConfig.MapHttpAttributeRoutes()(请确保在任何传统的路由注册之前调用它)

既然你没有调用MapHttpAttributeRoutes,你的请求似乎与传统的路由匹配,比如api / {controller}。这将不起作用,因为匹配传统路由的路由将永远不会看到使用属性路由装饰的控制器/动作。

原文链接:https://www.f2er.com/aspnet/253889.html

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