溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ASP.NET Core 中FromServices如何使用

發(fā)布時(shí)間:2021-07-15 15:49:24 來源:億速云 閱讀:179 作者:Leah 欄目:web開發(fā)

本篇文章給大家分享的是有關(guān) ASP.NET Core 中FromServices如何使用,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

構(gòu)造函數(shù) 這種注入方式在 ASP.NET Core 中應(yīng)用的是最廣的,可想而知,只用這種方式也不是 放之四海而皆準(zhǔn) ,比如說,我不希望每次 new  class  的時(shí)候都不得不注入,換句話說,我想把依賴注入的粒度縮小,我希望只對(duì)某一個(gè)或者某幾個(gè)方法單獨(dú)實(shí)現(xiàn)注入,而不是全部,首先這能不能實(shí)現(xiàn)呢?實(shí)現(xiàn)肯定是沒有問題的,只需用  FromServices 特性即可,它可以實(shí)現(xiàn)對(duì) Controller.Action 單獨(dú)注入。

這篇文章我們將會(huì)討論如何在 ASP.NET Core 中使用 FromServices 特性實(shí)現(xiàn)依賴注入,同時(shí)我也會(huì)演示最通用的 構(gòu)造函數(shù)注入 。

使用構(gòu)造函數(shù)注入接下來先通過 構(gòu)造函數(shù) 的方式實(shí)現(xiàn)依賴注入,考慮下面的 ISecurityService 接口。

public interface ISecurityService { bool Validate(string userID, string  password); } public class SecurityService : ISecurityService { public bool  Validate(string userID, string password) { //Write code here to validate the  user credentials return true; } }

要想實(shí)現(xiàn)依賴注入,還需要將 SecurityService 注入到 ServiceCollection 容器中,如下代碼所示:

// This method gets called by the runtime. Use this method to add services to  the container. public void ConfigureServices(IServiceCollection services) {  services.AddTransient(); services.AddControllersWithViews(); }

下面的代碼片段展示了如何通過 構(gòu)造函數(shù) 的方式實(shí)現(xiàn)注入。

public class HomeController : Controller { private readonly ILogger _logger;  private readonly ISecurityService _securityService; public  HomeController(ILogger logger, ISecurityService securityService) { _logger =  logger; _securityService = securityService; } public IActionResult Index() { var  isSuccess = _securityService.Validate(string.Empty, string.Empty); return  View(); } }

FromServicesAttribute 簡(jiǎn)介FromServicesAttribute 特性是在 Microsoft.AspNetCore.Mvc  命名空間下,通過它可以直接將service注入到action方法中,下面是 FromServicesAttribute 的源碼定義:

[AttributeUsage(AttributeTargets.Parameter, AllowMultiple = false, Inherited  = true)] public class FromServicesAttribute : Attribute, IBindingSourceMetadata  { public FromServicesAttribute(); public BindingSource BindingSource { get; }  }

使用 FromServices 依賴注入接下來將 FromServices 注入到 Action  方法參數(shù)上,實(shí)現(xiàn)運(yùn)行時(shí)參數(shù)的依賴解析,知道這些基礎(chǔ)后,現(xiàn)在可以把上一節(jié)中的 構(gòu)造函數(shù)注入 改造成 FromServices注入,如下代碼所示:

public class HomeController : Controller { private readonly ILogger _logger;  public HomeController(ILogger logger) { _logger = logger; } public IActionResult  Index([FromServices] ISecurityService securityService) { var isSuccess =  securityService.Validate(string.Empty, string.Empty); return View(); } }

以上就是 ASP.NET Core 中FromServices如何使用,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見到或用到的。希望你能通過這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(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)容。

AI