为什么Web API找不到我的资源

本文关键字:我的 资源 找不到 API Web 为什么 | 更新日期: 2023-09-27 17:59:27

我正在使用Web API 2并在ASP.Net4中进行开发。这是我尝试学习webapi的一个示例代码。有两条路线。第一个路由是给定商店的服务资源。第二条路由是存储资源路由。

public static void RegisterRoutes(RouteCollection routes)
{
    routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
    routes.MapRoute(
        name: "Services",
        url: "store/{id}/services",
        defaults: new { controller = "Services" }
    );
    routes.MapRoute(
        name: "Store",
        url: "store/{id}",
        defaults: new { controller = "Store", id = UrlParameter.Optional}
    );
}

第二条路线"商店"运行良好。第一条路线是详细了解商店中提供的所有服务。当我尝试时

/api/store/1/服务

我得到404错误。有人能指出我做错了什么吗?

这是控制器

namespace APITestter1.Controllers
{
    public class ServicesController : ApiController
    {
        public string Get(int id, string prop = "xxx")
        {
            return "Hello services World!" + id + " added attribute " + prop;
        }
        public string Post(int id, string prop = "xxx")
        {
            return "Hello Post World!" + id + " added attribute " + prop;
        }
    }
}

为什么Web API找不到我的资源

我不明白为什么前缀加上"api"answers"prop"?

我更新你的代码:

    public static void RegisterRoutes(RouteCollection routes)
    {
        routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
        routes.MapRoute(
            name: "Services",
            url: "api/store/{id}/services/{prop}",
            defaults: new { controller = "Services", action = "store", prop = UrlParameter.Optional }
        );
        routes.MapRoute(
            name: "Store",
            url: "store/{id}",
            defaults: new { controller = "Store", id = UrlParameter.Optional}
        );
    }

namespace APITestter1.Controllers
{
    public class ServicesController : ApiController
    {
        [HttpGet, ActionName="store"]
        public string Get(int id, string prop = "xxx")
        {
            return "Hello services World!" + id + " added attribute " + prop;
        }
        [HttpPost, ActionName="store"]
        public string Post(int id, string prop = "xxx")
        {
            return "Hello Post World!" + id + " added attribute " + prop;
        }
    }
}

您在错误的文件中映射web api路由。如果您正在进行web api,那么请查找WebApiConfig.cs文件并将您的web api路由映射到那里。

您还试图浏览到/api/store/1/services,但在您的示例中,您将路线映射为store/{id}/services。请注意,您的路线模板中没有api

下面的web api配置应该与您尝试执行的相匹配

public static class WebApiConfig
{
    public static void Register(HttpConfiguration config)
    {
        // Attribute routing.
        config.MapHttpAttributeRoutes();
        // Convention-based routing.
        config.Routes.MapHttpRoute(
            name: "ServicesApi",
            routeTemplate: "api/store/{id}/services",
            defaults: new { controller = "Services" }
        );
        config.Routes.MapHttpRoute(
            name: "DefaultApi",
            routeTemplate: "api/{controller}/{id}",
            defaults: new { id = RouteParameter.Optional }
        );
    }
}

你还说你的第二条路线"商店"运行良好,但没有显示你使用的URL。假设它是/api/store/1,那么它将工作,因为它映射到使用api/{controller}/{id}DefaultApi路由模板。