如何调用Web Api控制器方法?

时间:2012-08-22 11:49:41

标签: asp.net-mvc-4 asp.net-web-api

我刚创建了asp.net mvc 4 app并添加了默认的webapi控制器

public class UserApiController : ApiController
{
    // GET api/default1
    public IEnumerable<string> Get()
    {
        return new string[] { "value1", "value2" };
    }

    // GET api/default1/5
    public string Get(int id)
    {
        return "value";
    }

    // POST api/default1
    public void Post(string value)
    {
    }

    // PUT api/default1/5
    public void Put(int id, string value)
    {
    }

    // DELETE api/default1/5
    public void Delete(int id)
    {
    }
}

然后我试图通过在浏览器中键入http://localhost:51416/api/get来调用方法get(),但收到错误:

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

我的路线配置:

public static void RegisterRoutes(RouteCollection routes)
        {
            routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

            routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{id}",
                //defaults: new { controller = "UserApiController", id = RouteParameter.Optional }
                defaults: new { id = RouteParameter.Optional }
            );

            routes.MapRoute(
                name: "Default",
                url: "{controller}/{action}/{id}",
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );
        }

为什么它默认不起作用? 我该怎么办才能解决这个问题?

1 个答案:

答案 0 :(得分:8)

您不需要在URL中放置get,因为GET是HTTP谓词的类型。

默认情况下,如果您输入网址,浏览器会发送GET请求。

请尝试使用http://localhost:51416/api/

如果您取消注释路由配置中的行UserApiControllerdefaults: new { controller = "UserApiController"...是默认的api控制器

请注意,在指定路线时不需要“控制器”后缀,因此正确的dafaults设置为:defaults: new { controller = "UserApi", id = RouteParameter.Optional }

或者您需要明确指定控制器http://localhost:51416/api/userapi

您可以在ASP.NET Web API site上开始了解Wep.API和基于HTTP动词的路由约定。