Dans appsettings.json
{
"MyArray": [
"str1",
"str2",
"str3"
]
}
Dans Startup.cs
public void ConfigureServices(IServiceCollection services)
{
services.AddSingleton(Configuration);
}
Dans HomeController
public class HomeController : Controller
{
private readonly IConfiguration _config;
public HomeController(IConfiguration config)
{
this._config = config;
}
public IActionResult Index()
{
return Json(_config.GetSection("MyArray"));
}
}
Voici mes codes ci-dessus, j'ai obtenu null Comment obtenir le tableau ?