在 .NET Core 的 cshtml 文件中显示 appsettings.json 值

Show appsettings.json value in cshtml file in .NET Core

我需要在 ASP.NET Core 3.1 的 .cshtml 文件中显示来自 appsettings.json 的值,就像我们在 ASP.NET MVC 中所做的那样:

@(System.Configuration.ConfigurationManager.AppSettings["SessionExpire"])

你能帮忙在 ASP.NET Core 3.1 MVC 中实现吗?

这是一个演示,用于在视图中显示来自 appsettings.json 的值:

appsettings.json:

{
  ...
  "Test": {
    "TestValue": "testValue"

  }
}

查看:

@using Microsoft.Extensions.Configuration
@inject IConfiguration Configuration
@Configuration.GetSection("Test")["TestValue"]