详解ASP.NET Core 中的框架级依赖注入
程序员文章站
2022-03-27 08:26:32
1、asp.net core 中的依赖注入
此示例展示了框架级依赖注入如何在 asp.net core 中工作。 其简单但功能强大,足以完成大部分的依赖注入工作。框架级依...
1、asp.net core 中的依赖注入
此示例展示了框架级依赖注入如何在 asp.net core 中工作。 其简单但功能强大,足以完成大部分的依赖注入工作。框架级依赖注入支持以下 scope:
- singleton — 总是返回相同的实例
- transient — 每次都返回新的实例
- scoped — 在当前(request)范围内返回相同的实例
假设我们有两个要通过依赖注入来进行工作的工件:
- pagecontext — 自定义请求上下文
- settings — 全局应用程序设置
这两个都是非常简单的类。pagecontext 类为布局页面提供当前页面标题的标题标签。
public class settings { public string sitename; public string connectionstring; } public class pagecontext { private readonly settings _settings; public pagecontext(settings settings) { _settings = settings; } public string pagetitle; public string fulltitle { get { var title = (pagetitle ?? "").trim(); if(!string.isnullorwhitespace(title) && !string.isnullorwhitespace(_settings.sitename)) { title += " | "; } title += _settings.sitename.trim(); return title; } } }
2、注册依赖
在 ui 构建块中使用这些类之前,需要在应用程序启动时注册这些类。该工作可以在 startup 类的 configureservices() 方法中完成。
public void configureservices(iservicecollection services) { services.addmvc(); var settings = new settings(); settings.sitename = configuration["sitename"]; services.addsingleton(settings); services.addscoped<pagecontext>(); }
现在可以将这些类注入到支持依赖注入的控制器和其他 ui 组件中。
3、向控制器注入实例
我们通过 home 控制器中的 pagecontext 类分配页面标题。
public class homecontroller : controller { private readonly pagecontext _pagecontext; public homecontroller(pagecontext pagecontext) { _pagecontext = pagecontext; } public iactionresult index() { _pagecontext.pagetitle = ""; return view(); } public iactionresult about() { _pagecontext.pagetitle = "about"; return view(); } public iactionresult error() { _pagecontext.pagetitle = "error"; return view(); } }
这种分配页面标题的方式不错,因为我们不必使用 viewdata,这样更容易受支持多语言应用程序支持。
4、向视图注入实例
现在控制器的 action 中分配了页面标题,是时候在布局页面中使用标题了。 我在页面的内容区域添加了标题,所以在 tech.io 环境中也很容易看到。为了能在布局页面中使用到 pagecontext,我使用了视图注入(下面代码片段中的第一行)。
@inject pagecontext pagecontext <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>@pagecontext.fulltitle</title> <environment names="development"> <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" rel="external nofollow" /> <link rel="stylesheet" href="~/css/site.css" rel="external nofollow" /> </environment> <environment names="staging,production"> <link rel="stylesheet" href="https://ajax.aspnetcdn.com/ajax/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" asp-fallback-href="~/lib/bootstrap/dist/css/bootstrap.min.css" rel="external nofollow" asp-fallback-test-class="sr-only" asp-fallback-test-property="position" asp-fallback-test-value="absolute" /> <link rel="stylesheet" href="~/css/site.min.css" rel="external nofollow" asp-append-version="true" /> </environment> </head> ... </html>
5、参考材料
asp.net 5 中的依赖注入(gunnar peipman)
asp.net core:使用视图注入(gunnar peipman)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 求一颗二叉树的镜像
推荐阅读
-
详解Django框架中的视图级缓存
-
ASP.NET Core应用中与第三方IoC/DI框架的整合
-
ASP.NET Core 2.2中的Endpoint路由详解
-
详解ASP.Net Core 中如何借助CSRedis实现一个安全高效的分布式锁
-
Asp.net Core MVC中怎么把二级域名绑定到特定的控制器上
-
详解ASP.NET Core 在 JSON 文件中配置依赖注入
-
ASP.NET Core依赖注入系列教程之服务的注册与提供
-
ASP.NET Core应用中与第三方IoC/DI框架的整合
-
asp.net core中灵活的配置方式详解
-
ASP.NET Core 2.2 WebApi 系列【三】AutoFac 仓储接口的依赖注入