This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
原本全名是 Yet Another Markup Language,後來也有稱之為 YAML Ain’t a Markup Language,用來強調 YAML 不是一個標記語言、不是文檔,而是利用做為數據。
個人覺得 YAML 在格式上算是 JSON 的進階版本,省去很多引號和括號,結構簡潔乾淨。
優點:
清楚好讀的巢狀結構
會自動判別資料型態
可以寫註解
缺點:
沒有明顯的 section 做區分,設定資料多的時候會較混亂
太深的巢狀還是有可能會影響可讀性
Python 目前無內建的套件可以讀取,需要另外安裝
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
注意:所有的值讀出來都會是 String,所以在使用 port 來連線資料庫之前,要記得先轉換成 Int
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
謝謝分享
讚讚