<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
ASP.NET Core 中,可以使用 ConfigurationBuilder 物件來構建。
主要分為三部:設定資料來源 -> ConfigurationBuilder -> 使用。
資料來源可來自字典或組態檔。
資料來源要麼繼承 IConfigurationSource ,要麼從組態檔中讀取。
我們先使用字典儲存鍵值對,來設定設定, test = 設定
,然後使用 ConfigurationBuilder.Add()
方法新增資料來源, Add
方法可以新增繼承了 IConfigurationSource
的資料來源。
MemoryConfigurationSource
繼承了 IConfigurationSource
,使用字典作為資料來源。
var dic = new Dictionary<string, string>() { ["test"] = "設定" }; var config = new ConfigurationBuilder() .Add(new MemoryConfigurationSource() { InitialData = dic }).Build(); string test = config["test"];
老是 new 不太爽,可以使用下面的方法來讀取字典中的資料來源:
var dic = new Dictionary<string, string>() { ["test"] = "設定" }; var config = new ConfigurationBuilder() .AddInMemoryCollection(dic) .Build(); string test = config["test"];
假如在 專案根目錄下建立一個 json 檔案,內容如下:
{ "test":"設定" }
那麼可以這樣讀取設定:
var config = new ConfigurationBuilder() .AddJsonFile("test.json") .Build(); string test = config["test"]; Console.WriteLine(test);
如果組態檔不在根目錄下,則可以使用 SetBasePath()
來定義路徑,範例如下:
var config = new ConfigurationBuilder() .SetBasePath("E:\test\aaa") .AddJsonFile("test.json") .Build();
上面看到,獲取設定項是非常簡單的, config["{KeyName}"]
即可獲得 value
。
另外,可以監控 json 檔案,當 json 檔案發生更改時,主動更新。
config.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true);
設定資料來源可以有層次結構。
ASP.NET Core 中,都會有個 appsettings.json 檔案,其內容如下:
{ "Logging": { "LogLevel": { "Default": "Information", "Microsoft": "Warning", "Microsoft.Hosting.Lifetime": "Information" } } }
那麼我們使用時,可以使用 :
符號獲取下一層子項的設定。
var config = new ConfigurationBuilder() .AddJsonFile("appsettings.json") .Build(); string test = config["Logging:LogLevel:Default"];
如果你只想 獲取 json 檔案中 LogLevel
部分的設定,可以使用 GetSection()
方法。
var config = new ConfigurationBuilder() .AddJsonFile("appsettings.json") .Build() .GetSection("Logging:LogLevel"); string test = config["Default"];
通過 json 組態檔,我們可以很方便地構建層級結構的設定,如果想在字典中儲存,可以使用 "{k1}:{k2}" 這種形式存。例如:
var dic = new Dictionary<string, string>() { ["testParent:Child1"] = "6", ["testParent:Child2"] = "666" }; var config = new ConfigurationBuilder() .AddInMemoryCollection(dic) .Build().GetSection("testParent"); string test = config["Child1"];
我們可以使用 Get<>()
方法,將設定對映為物件。
public class TestOptions { public string A { get; set; } public string B { get; set; } public string C { get; set; } }
var dic = new Dictionary<string, string>() { ["A"] = "6", ["B"] = "66", ["C"] = "666" }; TestOptions config = new ConfigurationBuilder() .AddInMemoryCollection(dic) .Build().Get<TestOptions>();
到此這篇關於ASP.NET Core讀取組態檔的文章就介紹到這了。希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45