摘要: ```//index.html{{if gt .Age 18}} hello, old man, {{.Name}}{{else}} hello,young man, {{.Name}}{{end}}``````import ( "text/template")p := Person{Name: "Mary", Age: 11}t, _ := template.ParseFiles("... 阅读全文
posted @ 2019-12-22 22:38 mmaotai 阅读(176) 评论(0) 推荐(0) 编辑