无法通过Web API识别Controller上的Action

时间:2013-06-21 15:06:38

标签: asp.net-web-api

我不断收到错误消息:

未找到与请求URI匹配的HTTP资源

我的WebApiConfig.cs如下:

        config.Routes.MapHttpRoute(
            name: "GetMessage",
            routeTemplate: "api/{controller}/GetMessage/{quoteName}",
            defaults: new { controller = "Extract", action = "GetMessage", quoteName = "" }
        );

我在控制器上的方法看起来像这样

    public string GetMessage(string quoteName)
    {
        return "Hello World";
    }

我有什么遗失的吗?这非常令人沮丧。

0 个答案:

没有答案