ASP MVC Web API端点返回404

时间:2017-09-26 00:34:34

标签: c# asp.net-mvc asp.net-web-api2

我正在学习Angular 2并尝试在ASP MVC设置上运行它。我正在关注这个非常出色的指南:https://www.codeproject.com/Articles/1181888/Angular-in-ASP-NET-MVC-Web-API-Part

我稍微修改了一下。原始版本应该通过API端点api/userapi操作从数据库中获取的名称列表。我对其进行了更改,使其成为端点api/postapi中的帖子列表(例如博客或其他内容)。到目前为止,该项目的Angular部分正在开展工作。它的ASP.NET部分无法正常工作。

查看原始项目的配置(我从该链接下载并在Visual Studio 2017中测试完成)并将其与我的实验进行比较,对于我的生活,我无法发现我可能错误配置它的位置。

这可能是什么问题?这是我的Web API部分的代码:

Global.asax.cs

using System.Web.Http;
using System.Web.Mvc;
using System.Web.Optimization;
using System.Web.Routing;

namespace WebAPI
{
    public class WebApiApplication : System.Web.HttpApplication
    {
        protected void Application_Start()
        {
            AreaRegistration.RegisterAllAreas();
            GlobalConfiguration.Configure(WebApiConfig.Register);
            FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
            RouteConfig.RegisterRoutes(RouteTable.Routes);
            BundleConfig.RegisterBundles(BundleTable.Bundles);
        }
    }
}

RouteConfig.cs

using System.Web.Mvc;
using System.Web.Routing;

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

            routes.MapRoute(
                name: "Default",
                url: "{*anything}", // I am suspicious of this line but changing it doesn't fix it
                defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
            );
        }
    }

WebApiConfig.cs

using System.Net.Http.Headers;
using System.Web.Http;

namespace WebAPI
{
    public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {
            // Web API configuration and services

            // Output as JSON instead of XML
            config.Formatters.JsonFormatter.SupportedMediaTypes
                .Add(new MediaTypeHeaderValue("application/octet-stream"));

            // Web API routes
            config.MapHttpAttributeRoutes();

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

PostsAPIController.cs

using WebAPI.Models;
using System.Data.Entity;
using System.Linq;
using System.Net.Http;
using System.Web.Http;

namespace WebAPI.Controllers
{
    [RoutePrefix("api/postapi")] //this did not help either
    public class PostsAPIController : BaseAPIController
    {
        public HttpResponseMessage Get()
        {
            return ToJson(_db.TWebSitePostsSet.AsEnumerable());
        }

        public HttpResponseMessage Post([FromBody]TWebSitePosts value)
        {
            _db.TWebSitePostsSet.Add(value);
            return ToJson(_db.SaveChanges());
        }

        public HttpResponseMessage Put(int id, [FromBody]TWebSitePosts value)
        {
            _db.Entry(value).State = EntityState.Modified;
            return ToJson(_db.SaveChanges());
        }

        public HttpResponseMessage Delete(int id)
        {
            _db.TWebSitePostsSet.Remove(_db.TWebSitePostsSet.FirstOrDefault(x => x.PostId == id));
            return ToJson(_db.SaveChanges());
        }
    }
}

1 个答案:

答案 0 :(得分:1)

将此代码[RoutePrefix("api/postapi")]更改为[Route("api/postapi")],看看是否有所作为 并查看此页面。 Attribute routing webapi-2