gpt4 book ai didi

c# - 如何将 Web API 添加到现有的 ASP.NET MVC (5) Web 应用程序项目?

转载 作者:IT王子 更新时间:2023-10-29 03:32:28 25 4
gpt4 key购买 nike

假设您在制作新的 MVC (5) 项目时忘记勾选 Web API 复选框(将其添加到项目中),您需要做什么才能添加 Web API 并使其正常工作?

有很多迁移问题,但似乎没有一个具有将 Web API 添加到 MVC 5 项目的完整和最新的步骤,并且它似乎与一些旧答案有所不同。

Add Web API to MVC 4

Adding GlobalConfiguration.Configure(WebApiConfig.Register) MVC 4

最佳答案

更新MVC项目

使用 Nuget 获取最新的 Web API。

项目 - 右键单击​​ - 管理 Nuget 包 - 搜索 Web API(Microsoft ASP.NET Web API ...)并将其安装到您的 MVC 项目中。

然后您仍然需要让Web API 路由 工作。来自 Microsoft's Configuring ASP.NET Web API 2

将 WebApiConfig.cs 添加到 App_Start/文件夹

using System.Web.Http;

namespace WebApplication1
{
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// TODO: Add any additional configuration code.

// Web API routes
config.MapHttpAttributeRoutes();

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

// WebAPI when dealing with JSON & JavaScript!
// Setup json serialization to serialize classes to camel (std. Json format)
var formatter = GlobalConfiguration.Configuration.Formatters.JsonFormatter;
formatter.SerializerSettings.ContractResolver =
new Newtonsoft.Json.Serialization.CamelCasePropertyNamesContractResolver();
}
}
}

如果您有一个 MVC 项目,它将有 Global.asax.cs,添加新路由。 Order of the Global.asax.cs routes is critical.请注意,有一些过时的示例使用WebApiConfig.Register

将此行添加到 Global.asax.cs:GlobalConfiguration.Configure(WebApiConfig.Register);

protected void Application_Start()
{
// Default stuff
AreaRegistration.RegisterAllAreas();

// Manually installed WebAPI 2.2 after making an MVC project.
GlobalConfiguration.Configure(WebApiConfig.Register); // NEW way
//WebApiConfig.Register(GlobalConfiguration.Configuration); // DEPRECATED

// Default stuff
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
}

WebAPI 帮助

获得(非常)helpful WebAPI help pages , 安装 WebAPI.HelpPage。参见 http://channel9.msdn.com/Events/Build/2014/3-644 (约 42 分钟)它的作用。看起来很有帮助!

Nuget 控制台:Install-Package Microsoft.AspNet.WebApi.HelpPage

验证 WebAPI 是否正常工作:

到 Controller 文件夹 -> 添加新项 -> Web API Controller 类。

public class TestController : ApiController
{
//public TestController() { }

// GET api/<controller>
public IEnumerable<string> Get()
{
return new string[] { "value1", "value2" };
}

// GET api/<controller>/5
public string Get(int id)
{
return "value";
}
//...
}

现在您可以像往常一样在 IE/FF/Chrome 中进行测试,或者在 JavaScript 控制台中进行非获取测试。

(只有 URL 中的 Controller ,它将调用新 Web API Controller 中的 GET() 操作,它会根据 REST 自动映射到方法/操作,例如 PUT/POST/GET/DELETE。你不需要需要像在 MVC 中那样通过操作来调用它们)网址直接:

http://localhost:PORT/api/CONTROLLERNAME/

或者使用 jQuery 查询 Controller 。运行项目,打开控制台(IE 中的 F12)并尝试运行 Ajax 查询。 (检查您的端口和控制名称)

$.get( "http://localhost:PORT/api/CONTROLLERNAME/", function( data ) {
//$( ".result" ).html( data );
alert( "Get data received:" + data);
});

Side note: There are some pros/cons to consider when combining MVC and Web API in a project

WebAPI 帮助验证:http://localhost:PORT/help

关于c# - 如何将 Web API 添加到现有的 ASP.NET MVC (5) Web 应用程序项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26067296/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com