您好,登錄后才能下訂單哦!
這篇文章將為大家詳細(xì)講解有關(guān)在ASP.NET Core MVC中如何構(gòu)建簡(jiǎn)單Web Api,小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
在 ASP.NET Core MVC 框架中,ASP.NET 團(tuán)隊(duì)為我們提供了一整套的用于構(gòu)建一個(gè) Web 中的各種部分所需的套件,那么有些時(shí)候我們只需要做一個(gè)簡(jiǎn)單的 Web Api 程序怎么辦呢?
在 GitHub 中的 ASP.NET Core MVC 源碼里面,我們只要關(guān)注 Microsoft.AspNetCore.Mvc
這個(gè)包,那么除了這個(gè)包之外它還包含這些:
Microsoft.AspNetCore.Mvc.ApiExplorer
Microsoft.AspNetCore.Mvc.Cors
Microsoft.AspNetCore.Mvc.DataAnnotations
Microsoft.AspNetCore.Mvc.Formatters.Json
Microsoft.AspNetCore.Mvc.Localization
Microsoft.AspNetCore.Mvc.Razor
Microsoft.AspNetCore.Mvc.TagHelpers
Microsoft.AspNetCore.Mvc.ViewFeatures
Microsoft.Extensions.Caching.Memory
Microsoft.Extensions.DependencyInjection
NETStandard.Library
通常情況下,我們?cè)趧?chuàng)建一個(gè) Web MVC 網(wǎng)站的時(shí)候,會(huì)在 Startup.cs 文件中的 ConfigureServices
方法中,這樣添加:
services.AddMvc();
以上的代碼會(huì)將 MVC 中的服務(wù)注入到 DI 容器中,我們來(lái)看一下 AddMvc()
的源碼:
public static IMvcBuilder AddMvc(this IServiceCollection services){ var builder = services.AddMvcCore(); builder.AddApiExplorer(); builder.AddAuthorization(); AddDefaultFrameworkParts(builder.PartManager); // Order added affects options setup order // Default framework order builder.AddFormatterMappings(); builder.AddViews(); builder.AddRazorViewEngine(); builder.AddCacheTagHelper(); // +1 order builder.AddDataAnnotations(); // +1 order // +10 order builder.AddJsonFormatters(); builder.AddCors(); return new MvcBuilder(builder.Services, builder.PartManager); }
實(shí)際上,如果想構(gòu)建一個(gè)簡(jiǎn)單 Web Api 程序的話,ASP.NET 團(tuán)隊(duì)已經(jīng)為我們想到了這一點(diǎn),所以我們只需要修改我們注入的服務(wù)。
首先,不需要引用 Microsoft.AspNetCore.Mvc
這個(gè)包了,轉(zhuǎn)而引用 Microsoft.AspNetCore.Mvc.Core
。 Mvc.Core 這個(gè)包只會(huì)給你提供基本的 MVC 中間件,比如路由,Controller, HttpResult 等,其他更多的如關(guān)于 Razor,Cores,Views 等則沒(méi)有提供。
在 Web Api 應(yīng)用中,大多數(shù)情況下是以 Json 進(jìn)行數(shù)據(jù)序列化傳輸?shù)模孕枰砑?nbsp;Microsoft.AspNetCore.Mvc.Formatters.Json
這個(gè)包。
然后,在 ConfigureServices
,將 Mvc Core 中間件和 Json Formatter 添加里面。
public void ConfigureServices(IServiceCollection services){ services.AddMvcCore() .AddJsonFormatters(); }
最后一點(diǎn)就是,你的 XXXController 類(lèi)中要繼承 ControllerBase
而不是 Controller
。 ControllerBase 里面沒(méi)有提供任何關(guān)于對(duì) Views 的支持。
public class XXXController: ControllerBase{ }
下面是最終的 project.json 引用的所有程序包。
"dependencies": { "Microsoft.NETCore.App": { "version": "1.1.0", "type": "platform" }, "Microsoft.AspNetCore.Mvc.Core": "1.1.0", "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.1.0", "Microsoft.AspNetCore.Server.IISIntegration": "1.1.0", "Microsoft.AspNetCore.Server.Kestrel": "1.1.0", "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.1.0", "Microsoft.Extensions.Configuration.FileExtensions": "1.1.0", "Microsoft.Extensions.Configuration.Json": "1.1.0", "Microsoft.Extensions.Configuration.CommandLine": "1.1.0", "Microsoft.Extensions.Logging": "1.1.0", "Microsoft.Extensions.Logging.Console": "1.1.0", "Microsoft.Extensions.Logging.Debug": "1.1.0"}
關(guān)于“在ASP.NET Core MVC中如何構(gòu)建簡(jiǎn)單Web Api”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。