帶有 Switch 和 ForEach 的 Golang 範本
此程式碼示範重點介紹如何使用 Go 中的範本來產生 bash 腳本。該腳本需要 ForEach 透過依賴關係進行迭代,識別它們的類型,並輸出相應的回顯訊息。實作了 switch 語句來處理每個依賴項的類型。
package main import ( "log" "text/template" "gopkg.in/yaml.v2" "os" ) type File struct { TypeVersion string `yaml:"_type-version"` Dependency []Dependency } type Dependency struct { Name string Type string CWD string Install []Install } type Install map[string]string var data = ` _type-version: "1.0.0" dependency: - name: ui type: runner cwd: /ui install: - name: api - name: ui2 type: runner2 cwd: /ui2 install: - name: api2 ` func main() { f := File{} err := yaml.Unmarshal([]byte(data), &f) if err != nil { log.Fatalf("error: %v", err) } const t = ` #!/bin/bash {{range .Dependency}} echo "type is {{.Type}}" echo "cwd is {{.CWD}}" {{range .Install}} echo "install {{.name}}" {{end}} {{end}} ` tt := template.Must(template.New("").Parse(t)) err = tt.Execute(os.Stdout, f) if err != nil { log.Println("executing template:", err) } }
提供的資料被解組到 File 結構中,然後準備模板執行。此修改後的程式碼產生一個腳本:
#!/bin/bash echo "type is runner" echo "cwd is /ui" echo "install api" echo "type is runner2" echo "cwd is /ui2" echo "install api2"
以上是如何使用帶有 switch 和 ForEach 的 Go 模板生成 Bash 腳本,以迭代依賴項並根據其類型輸出相應的回顯訊息?的詳細內容。更多資訊請關注PHP中文網其他相關文章!