1

我正在尝试在 ASP.NET 中创建一个简单的 WebAPI。我把它放在IIS中。当我尝试浏览该网站时,一切都很好:

在此处输入图像描述

但是当我尝试从 API 获取结果时,我收到了这个错误:

在此处输入图像描述

控制器:

public class ProductController : ApiController
    {
        Product[] products = new Product[]
        {
            new Product { Id = 1, Name = "Tomato Soup", Category = "Groceries", Price = 1 },
            new Product { Id = 2, Name = "Yo-yo", Category = "Toys", Price = 3.75M },
            new Product { Id = 3, Name = "Hammer", Category = "Hardware", Price = 16.99M }
        };

        public IEnumerable<Product> GetAllProducts()
        {
            return products;
        }

        public IHttpActionResult GetProduct(int id)
        {
            var product = products.FirstOrDefault((p) => p.Id == id);
            if (product == null)
            {
                return NotFound();
            }
            return Ok(product);
        }
    }

WebApiConfig:

public static void Register(HttpConfiguration config)
        {
            // Web API configuration and services

            // Web API routes
            config.MapHttpAttributeRoutes();

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

1 回答 1

2

您将它托管在由 访问的应用程序上/api,因此您需要一个额外/api的来匹配路由:

http://localhost:6060/api/api/Product

如果您不希望这样,那么要么给api站点一个更合理的名称,要么api/从路由中删除,或者两者兼而有之。

于 2016-05-17T11:50:53.973 回答