From b8999e29ab99073ccdc1d83c3ec57fd2350684b5 Mon Sep 17 00:00:00 2001 From: xengineering Date: Mon, 4 Nov 2024 21:40:26 +0100 Subject: REMOVE ME: Add debug file to test optional struct members --- playground/main.go | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 playground/main.go diff --git a/playground/main.go b/playground/main.go new file mode 100644 index 0000000..38b5f0d --- /dev/null +++ b/playground/main.go @@ -0,0 +1,45 @@ +package main + +import ( + "encoding/json" + "fmt" + "html/template" + "log" + "os" +) + +type Testy struct { + Flag *bool `json:"flag"` + Cake *[]string `json:"cake"` +} + +const TEXT = `{ + "cake": [ + "one", + "two", + "three" + ] +}` + +const TEMPLATE = `Flag is: {{if .Flag}}{{.Flag}}{{else}}[none]{{end}} +Cake is: {{if .Cake}}{{range .Cake}}{{.}} {{end}}{{else}}[none]{{end}} +` + +func main() { + var t Testy + json.Unmarshal([]byte(TEXT), &t) + + tmpl, err := template.New("mytemplate").Parse(TEMPLATE) + if err != nil { + log.Fatal(err) + } + + tmpl.Execute(os.Stdout, t) + + b, err := json.Marshal(t) + if err != nil { + log.Fatal(err) + } + + fmt.Println(string(b)) +} -- cgit v1.2.3-70-g09d2