• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

.NET Core2.1如何获取自定义配置文件信息详解

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

前言

.net core来势已不可阻挡。既然挡不了,那我们就顺应它。了解它并学习它。今天我们就来看看和之前.net版本的配置文件读取方式有何异同,这里不在赘述.NET Core 基础知识。下面话不多说了,来一起看看详细的介绍吧

实现

注:需要NuGet引入:Microsoft.Extensions.Options.ConfigurationExtensions

①我们再配置文件appsettings.json中 新增自定义API Json如下:

{
 "Logging": {
 "IncludeScopes": false,
 "LogLevel": {
  "Default": "Warning"
 }
 },
 "API": {
 "Url": "http://localhost:8080/",
 "getclub": "api/club"
 } 
}

②然后我们定义一个静态类,再类中申明一个IConfigurationSection 类型变量

private static IConfigurationSection _appSection = null;

③写一个AppSetting静态方法获取到配置的Value项,代码如下:

  public static string AppSetting(string key)
  {
   string str = string.Empty;
   if (_appSection.GetSection(key) != null)
   {
    str = _appSection.GetSection(key).Value;
   }
   return str;
  }

④需要设置IConfigurationSection初始值,如下:

  public static void SetAppSetting(IConfigurationSection section)
  {
   _appSection = section;
  }

⑤然后写一个根据不同Json项读取出对应的值即可:

 public static string GetSite(string apiName)
 {
  return AppSetting(apiName);
 }

⑥有了以上几个步骤,基本上读取代码已经全部写完,剩下最后一个最重要的步骤,将要读取的Json文件配置到Startup.cs的Configure方法中,如下:

这样,我们就可以很轻松的获取到我们想要的配置项了,整段CS代码如下:

 /// <summary>
 /// 配置信息读取模型
 /// </summary>
 public static class SiteConfig
 {
  private static IConfigurationSection _appSection = null;

  /// <summary>
  /// API域名地址
  /// </summary>
  public static string AppSetting(string key)
  {
   string str = string.Empty;
   if (_appSection.GetSection(key) != null)
   {
    str = _appSection.GetSection(key).Value;
   }
   return str;
  }

  public static void SetAppSetting(IConfigurationSection section)
  {
   _appSection = section;
  }

  public static string GetSite(string apiName)
  {
   return AppSetting(apiName);
  }
 }

最后 ,我们来跑一下演示效果如下:

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对极客世界的支持。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
如何在.NET Core应用中使用NHibernate详解发布时间:2022-02-05
下一篇:
Devexpress中Gridcontrol查找分组发布时间:2022-02-05
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap