ASP.NET Core MVC 依赖注入View与Controller
一、asp.net core mvc 之依赖注入 view
asp.net core
支持在试图中使用依赖注入。这将有助于提供视图专用的服务,比如本地化或者仅用于填充视图元素的数据。应尽量保持控制器和视图之间的关注点分离。视图所显示的大部分数据应该从控制器传入。
使用 @inject
指令将服务注入到视图,语法 @inject <type> <name>
,
例如:
@model mvctest.models.operation @using mvctest.services @inject baseinfoservices baseinfoservices @{ viewdata["title"] = "create"; } <ul> @foreach (var city in baseinfoservices.getcities()) { <li>@city</li> } </ul> public class baseinfoservices { public list<string> getcities() { return new list<string>(); } }
需要提前在 configureservices
中配置,将该服务加入到容器。
1.填充查找数据
视图注入有助于填充 ui 元素,例如下拉框列表。比如一个包括性别,州以及其他用户资料的表单。如果通过标准的 mvc 方式渲染这个表单,则需要控制器为每一组选项都请求数据访问服务,然后将每一组绑定的选项填充到模型或viewbag
中。
另一种则是直接将服务注入到视图中以获取这些选项数据。这种方法将控制器代码量减少到最少,把构造视图元素的逻辑移到视图本身去。控制器 action
只需把用户资料数据传个表单即可。
2.重写服务
除了注入服务外,此技术还可用于重写页面上先前注入的服务。例如,替换默认的html helper
:
@model mvctest.models.operation @using mvctest.services @inject baseinfoservices baseinfoservices @inject myhtmlhelper html
在视图中使用 @html
将会调用自定义的服务。
如果想要扩展现有服务而不是替换,则只需在使用此技术的同时,让服务继承或者封装已有实现即可。
二、 asp.net core mvc 之依赖注入 controller
asp.net core mvc
控制器应通过构造函数明确地请求它们地依赖关系,在某些情况下,单个控制器地操作可能需要一个服务,在控制器级别上的请求可能没有意义。在这种情况下,也可以将服务作为 action 的参数。
依赖注入是一种如 dependency inversion principle
所示的技术,允许应用程序松散耦合的模块组成。
1.构造函数注入
asp.net core
内置的基于构造函数的依赖注入支持扩展到 mvc 控制器。通过只添加一个服务类型作为构造函数参数到控制器中,asp.net core
将会尝试使用内置服务容器解析这个类型。服务通常(但不总是)使用接口定义。例如,如果应用程序定义一个检索时间的服务,然后依赖注入而不是硬编码:
定义接口和实现:
namespace mvctest.services { public interface idatetime { datetime now { get; } } public class systemdatetime: idatetime { public datetime now { get { return datetime.now; } } } }
在 configureservices
中注册服务到容器:
services.addtransient<idatetime, systemdatetime>();
在控制其中使用:
public class datetimecontroller : controller { private idatetime _datetime; public datetimecontroller(idatetime datetime) { _datetime = datetime; } // get: datetime public actionresult index() { var servertime = _datetime.now; if (servertime.hour < 12) { viewdata["message"] = "good morning"; } return view(); } }
asp.net core
内置的依赖注入支持用于请求服务的类型只能有一个构造函数,如果多于一个会报异常。使用第三方实现替换默认依赖注入,可以实现支持多个构造函数。
2.使用 fromservices 操作注入
有时,不需要在控制器为多个操作提供服务。在这种情况下,将服务注入到操作方法的参数是有意义的。通过 [fromservices]
标记参数来实现:
public actionresult index([fromservices] idatetime _datetime) { var servertime = _datetime.now; if (servertime.hour < 12) { viewdata["message"] = "good morning"; } return view(); }
3.在控制器中访问设置
在控制器中访问应用程序设置或者配置设置时常见的模式。此访问应当使用在 configuration
中描述的访问模式。通常不应从控制器中使用依赖注入直接请求设置,更好的方式是请求 ioptions<t>
实例,t是你需要的配置类型。例如:
创建选项类:
public class appsettingoptions { public defaultconnec connectionstrings { get; set; } public string allowedhosts { get; set; } } public class defaultconnec { public string defaultconnection { get; set; } }
appsettings.json:
{ "connectionstrings": { "defaultconnection": "data source=.;initial catalog=test;integrated security=true" }, "logging": { "loglevel": { "default": "information" } }, "allowedhosts": "*" }
配置应用程序使用选项模型,在 configureservices
中添加配置类到服务容器:
public startup(iconfiguration configuration,ihostingenvironment env) { //configuration = configuration; var builder = new configurationbuilder() .setbasepath(directory.getcurrentdirectory()) .addjsonfile("appsettings.json",optional:true,reloadonchange:true) //.addjsonfile($"appsettings.{env.environmentname}.json",optional:true) ; //配置环境变量 //builder.addenvironmentvariables(); configuration = builder.build(); } public iconfiguration configuration { get; } // this method gets called by the runtime. use this method to add services to the container. public void configureservices(iservicecollection services) { services.addoptions(); services.configure<appsettingoptions>(configuration); //通过代码编写 services.configure<appsettingoptions>(options=> { options.allowedhosts = "test"; }); }
示例是从 appsettings.json
读取设置,也可以在代码中添加设置。
一旦指定了请类型的配置对象 appsettingoptions
,并将其添加到服务容器,就可以在控制器或操作方法通过请求 ioptions<appsettingoptions>
的实例获取它:
public class homecontroller : controller { private readonly ioptions<appsettingoptions> _options; public homecontroller(ioptions<appsettingoptions> options) { _options = options; } }
遵循选项模式允许将设置和配置彼此分离,并且确保控制器遵循关注点分离,因为不需要知道如何在哪里找到设置信息。由于控制器类中没有静态附着或者直接实例化设置类,因此使得控制器更容易使用单元测试。
到此这篇关于asp.net core mvc
依赖注入view与controller
的文章就介绍到这了,更多相关asp.net core mvc
依赖注入内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
.NET Core ASP.NET Core Basic 1-2 控制反转与依赖注入
-
ASP.NET Core依赖注入系列教程之服务的注册与提供
-
.NET Core ASP.NET Core Basic 1-2 控制反转与依赖注入
-
ASP.NET MVC 学习笔记-5.Controller与View的数据传递
-
ASP.NET Core Web 应用程序系列(二)- 在ASP.NET Core中使用Autofac替换自带DI进行批量依赖注入(MVC当中应用)
-
ASP.NET Core Web 应用程序系列(一)- 使用ASP.NET Core内置的IoC容器DI进行批量依赖注入(MVC当中应用)
-
ASP.NET Core依赖注入系列教程之服务的注册与提供
-
ASP.NET Core MVC 依赖注入View与Controller
-
ASP.NET Core Web 应用程序系列(三)- 在ASP.NET Core中使用Autofac替换自带DI进行构造函数和属性的批量依赖注入(MVC当中应用)
-
asp.net core2.0 依赖注入 AddTransient与AddScoped的区别