編輯時在 YAML 檔案中保留單引號
php小編香蕉介紹:在進行編輯時,保留單引號是一個重要的技巧。在YAML檔案中,使用單引號可以確保文字內容被原樣保留,不會受到解析器的解釋。這種方式可以避免特殊字元或特定格式的資料出現錯誤,確保文件內容的準確性和完整性。無論是處理設定檔還是編寫程式碼,保留單引號都是一個很好的習慣,能夠幫助我們更好地管理和維護程式碼。
問題內容
我想編輯 YAML 檔案中某些鍵的值,同時保持其餘鍵不變。我編寫了一個片段來為這些鍵插入一些值,但生成的新檔案不維護單引號 ('
)。如何避免這種情況?
我的程式碼:
<code>func updateVariables(nameValue, nameCluster string) error { yamlFile, err := os.ReadFile("path") if err != nil { return fmt.Errorf("Error reading YAML file: %v", err) } var config PipelineConfig err = yaml.Unmarshal(yamlFile, &config) if err != nil { return fmt.Errorf("Error parsing YAML file: %v", err) } for i := range config.Variables { switch config.Variables[i].Name { case "app_name": config.Variables[i].Value = nameValue case "cluster_name": config.Variables[i].Value = nameCluster } } modifiedYAML, err := yaml.Marshal(&config,) if err != nil { return fmt.Errorf("Error converting structure to YAML: %v", err) } err = os.WriteFile("path", modifiedYAML, 0644) if err != nil { return fmt.Errorf("Error writing modified YAML file: %v", err) } fmt.Println("File YAML modified.") return nil } </code>
我的結構:
<code>type PipelineConfig struct { Trigger string `yaml:"trigger"` Variables []struct { Name string `yaml:"name"` Value string `yaml:"value"` } `yaml:"variables"` Stages []struct { Template string `yaml:"template"` Parameters struct { AppName string `yaml:"app_name"` AppRepoBranch string `yaml:"app_repo_branch"` LocationEnv string `yaml:"location_env"` ComponentName string `yaml:"component_name"` ClusterName string `yaml:"cluster_name"` } `yaml:"parameters"` } `yaml:"stages"` } </code>
編輯前歸檔 yaml
trigger: none variables: - name: app_name value: '<name>' - name: cluster_name value: '<cluster>' - name: component_name value: '<component>' - name: location_env value: 'dev' stages: - template: 'tem' parameters: app_name: '${{ variables.app_name }}' app_repo_branch: 'dev' location_env: '${{ variables.location_env }}' component_name: '${{ variables.component_name }}' cluster_name: '${{ variables.cluster_name }}'
編輯後歸檔yaml
trigger: none variables: - name: app_name value: test - name: cluster_name value: test - name: component_name value: <component> - name: location_env value: dev stages: - template: tem parameters: app_name: ${{ variables.app_name }} app_repo_branch: develop location_env: ${{ variables.location_env }} component_name: ${{ variables.component_name }} cluster_name: ${{ variables.cluster_name }}
如您所見,單引號消失了。有什麼建議嗎?
解決方法
yaml.Unmarshal
函數將yaml 值解組到不帶元資料的自訂結構(style、kind 等)。
yaml.Marshal
函數正在處理自訂結構,將元資料值設為預設值。要存取元資料的字段,需要使用 yaml.Node$ $endc$$</a>。 </p>
<p>在您的情況下 <code>Value
欄位具有 yaml.Style
等於 yaml.SingleQuotedStyle
要存取它(解組後不要遺失),請將 Value
欄位類型變更為 yaml.Node
。
Variables []struct { Name string `yaml:"name"` Value yaml.Node `yaml:"value"` } `yaml:"variables"`
for i := range config.Variables { switch config.Variables[i].Name.Value { case "app_name": config.Variables[i].Value.Value = nameValue case "cluster_name": config.Variables[i].Value.Value = nameCluster } }
以上是編輯時在 YAML 檔案中保留單引號的詳細內容。更多資訊請關注PHP中文網其他相關文章!

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

OpenSSL,作為廣泛應用於安全通信的開源庫,提供了加密算法、密鑰和證書管理等功能。然而,其歷史版本中存在一些已知安全漏洞,其中一些危害極大。本文將重點介紹Debian系統中OpenSSL的常見漏洞及應對措施。 DebianOpenSSL已知漏洞:OpenSSL曾出現過多個嚴重漏洞,例如:心臟出血漏洞(CVE-2014-0160):該漏洞影響OpenSSL1.0.1至1.0.1f以及1.0.2至1.0.2beta版本。攻擊者可利用此漏洞未經授權讀取服務器上的敏感信息,包括加密密鑰等。

後端學習路徑:從前端轉型到後端的探索之旅作為一名從前端開發轉型的後端初學者,你已經有了nodejs的基礎,...

Go爬蟲Colly中的Queue線程問題探討在使用Go語言的Colly爬蟲庫時,開發者常常會遇到關於線程和請求隊列的問題。 �...

Go語言中用於浮點數運算的庫介紹在Go語言(也稱為Golang)中,進行浮點數的加減乘除運算時,如何確保精度是�...

在BeegoORM框架下,如何指定模型關聯的數據庫?許多Beego項目需要同時操作多個數據庫。當使用Beego...

Go語言中字符串打印的區別:使用Println與string()函數的效果差異在Go...

GoLand中自定義結構體標籤不顯示怎麼辦?在使用GoLand進行Go語言開發時,很多開發者會遇到自定義結構體標籤在�...

Go語言中使用RedisStream實現消息隊列時類型轉換問題在使用Go語言與Redis...
