在 ASP.NET Core 中将依赖项注入到视图Dependency injection into views in ASP.NET Core

本文内容

作者:Steve Smith

ASP.NET Core 支持将依赖关系注入到视图。这对于视图特定服务很有用,例如仅为填充视图元素所需的本地化或数据。应尽量在控制器和视图之间保持问题分离视图显示的大部分数据应该从控制器传入。

查看或下载示例代码如何下载

配置注入Configuration injection

appsettings.json 值可以直接注入到视图。

appsettings.json 文件示例:

  1. {
  2. "root": {
  3. "parent": {
  4. "child": "myvalue"
  5. }
  6. }
  7. }

@inject 的语法:@inject <type> <name>

使用 @inject 的示例:

  1. @using Microsoft.Extensions.Configuration
  2. @inject IConfiguration Configuration
  3. @{
  4. string myValue = Configuration["root:parent:child"];
  5. ...
  6. }

服务注入Service injection

可以使用 @inject 指令将服务注入到视图。可以将 @inject 视为向视图添加属性,然后使用 DI 填充属性。

  1. @using System.Threading.Tasks
  2. @using ViewInjectSample.Model
  3. @using ViewInjectSample.Model.Services
  4. @model IEnumerable<ToDoItem>
  5. @inject StatisticsService StatsService
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <title>To Do Items</title>
  10. </head>
  11. <body>
  12. <div>
  13. <h1>To Do Items</h1>
  14. <ul>
  15. <li>Total Items: @StatsService.GetCount()</li>
  16. <li>Completed: @StatsService.GetCompletedCount()</li>
  17. <li>Avg. Priority: @StatsService.GetAveragePriority()</li>
  18. </ul>
  19. <table>
  20. <tr>
  21. <th>Name</th>
  22. <th>Priority</th>
  23. <th>Is Done?</th>
  24. </tr>
  25. @foreach (var item in Model)
  26. {
  27. <tr>
  28. <td>@item.Name</td>
  29. <td>@item.Priority</td>
  30. <td>@item.IsDone</td>
  31. </tr>
  32. }
  33. </table>
  34. </div>
  35. </body>
  36. </html>

此视图显示 ToDoItem 实例的列表,以及显示总体统计信息的摘要。摘要从已注入的 StatisticsService 中填充。在 Startup.cs 的 ConfigureServices 中为依赖关系注入注册此服务:

  1. // For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=398940
  2. public void ConfigureServices(IServiceCollection services)
  3. {
  4. services.AddMvc();
  5. services.AddTransient<IToDoItemRepository, ToDoItemRepository>();
  6. services.AddTransient<StatisticsService>();
  7. services.AddTransient<ProfileOptionsService>();

StatisticsService 通过存储库访问 ToDoItem 实例集并执行某些计算:

  1. using System.Linq;
  2. using ViewInjectSample.Interfaces;
  3. namespace ViewInjectSample.Model.Services
  4. {
  5. public class StatisticsService
  6. {
  7. private readonly IToDoItemRepository _toDoItemRepository;
  8. public StatisticsService(IToDoItemRepository toDoItemRepository)
  9. {
  10. _toDoItemRepository = toDoItemRepository;
  11. }
  12. public int GetCount()
  13. {
  14. return _toDoItemRepository.List().Count();
  15. }
  16. public int GetCompletedCount()
  17. {
  18. return _toDoItemRepository.List().Count(x => x.IsDone);
  19. }
  20. public double GetAveragePriority()
  21. {
  22. if (_toDoItemRepository.List().Count() == 0)
  23. {
  24. return 0.0;
  25. }
  26. return _toDoItemRepository.List().Average(x => x.Priority);
  27. }
  28. }
  29. }

示例存储库使用内存中集合。建议不将上示实现(对内存中的所有数据进行操作)用于远程访问的大型数据集。

该示例显示绑定到视图的模型数据以及注入到视图中的服务:

列出项总数、已完成项、平均优先级以及任务列表(具有其优先级别和表示完成的布尔值)的“To Do”视图。

填充查找数据Populating Lookup Data

视图注入可用于填充 UI 元素(如下拉列表)中的选项。请考虑这样的用户个人资料窗体,其中包含用于指定性别、状态和其他首选项的选项。使用标准 MVC 方法呈现这样的窗体,需让控制器为每组选项请求数据访问服务,然后用要绑定的每组选项填充模型或 ViewBag

另一种方法是将服务直接注入视图以获取选项。这最大限度地减少了控制器所需的代码量,将此视图元素构造逻辑移入视图本身。显示个人资料编辑窗体的控制器操作只需要传递个人资料实例的窗体:

  1. using Microsoft.AspNetCore.Mvc;
  2. using ViewInjectSample.Model;
  3. namespace ViewInjectSample.Controllers
  4. {
  5. public class ProfileController : Controller
  6. {
  7. [Route("Profile")]
  8. public IActionResult Index()
  9. {
  10. // TODO: look up profile based on logged-in user
  11. var profile = new Profile()
  12. {
  13. Name = "Steve",
  14. FavColor = "Blue",
  15. Gender = "Male",
  16. State = new State("Ohio","OH")
  17. };
  18. return View(profile);
  19. }
  20. }
  21. }

用于更新这些首选项的 HTML 窗体包括三个属性的下拉列表:

用窗体更新个人资料视图,可输入姓名、性别、状态和喜爱的颜色。

这些列表由已注入视图的服务填充:

  1. @using System.Threading.Tasks
  2. @using ViewInjectSample.Model.Services
  3. @model ViewInjectSample.Model.Profile
  4. @inject ProfileOptionsService Options
  5. <!DOCTYPE html>
  6. <html>
  7. <head>
  8. <title>Update Profile</title>
  9. </head>
  10. <body>
  11. <div>
  12. <h1>Update Profile</h1>
  13. Name: @Html.TextBoxFor(m => m.Name)
  14. <br/>
  15. Gender: @Html.DropDownList("Gender",
  16. Options.ListGenders().Select(g =>
  17. new SelectListItem() { Text = g, Value = g }))
  18. <br/>
  19. State: @Html.DropDownListFor(m => m.State.Code,
  20. Options.ListStates().Select(s =>
  21. new SelectListItem() { Text = s.Name, Value = s.Code}))
  22. <br />
  23. Fav. Color: @Html.DropDownList("FavColor",
  24. Options.ListColors().Select(c =>
  25. new SelectListItem() { Text = c, Value = c }))
  26. </div>
  27. </body>
  28. </html>

ProfileOptionsService 是 UI 级别的服务,旨在准确提供此窗体所需的数据:

  1. using System.Collections.Generic;
  2. namespace ViewInjectSample.Model.Services
  3. {
  4. public class ProfileOptionsService
  5. {
  6. public List<string> ListGenders()
  7. {
  8. // keeping this simple
  9. return new List<string>() {"Female", "Male"};
  10. }
  11. public List<State> ListStates()
  12. {
  13. // a few states from USA
  14. return new List<State>()
  15. {
  16. new State("Alabama", "AL"),
  17. new State("Alaska", "AK"),
  18. new State("Ohio", "OH")
  19. };
  20. }
  21. public List<string> ListColors()
  22. {
  23. return new List<string>() { "Blue","Green","Red","Yellow" };
  24. }
  25. }
  26. }

重要

请记得在 Startup.ConfigureServices 中注册通过依赖项注入请求的类型。注销的类型将在运行时引发异常,因为服务提供程序通过 GetRequiredService 接受内部查询。

替代服务Overriding Services

除了注入新的服务之外,此方法也可用于替代以前在页面上注入的服务。下图显示了第一个示例中使用的页面上的所有可用字段:

类型化 @ symbol 列表 Html 上的 IntelliSense 上下文菜单, 组件, StatsService, 以及 Url 字段

如你所见,包括默认字段 HtmlComponentUrl(以及我们注入的 StatsService)。如果想用自己的 HTML 帮助程序替换默认的 HTML 帮助程序,可使用 @inject 轻松完成:

  1. @using System.Threading.Tasks
  2. @using ViewInjectSample.Helpers
  3. @inject MyHtmlHelper Html
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <title>My Helper</title>
  8. </head>
  9. <body>
  10. <div>
  11. Test: @Html.Value
  12. </div>
  13. </body>
  14. </html>

如果想扩展现有的服务,用自己的方法继承或包装现有的实现时,只需使用此方法。

另请参阅See Also