为了账号安全,请及时绑定邮箱和手机立即绑定

Go:使用 html/template 在新行上打印切片中的每个元素

Go:使用 html/template 在新行上打印切片中的每个元素

Go
叮当猫咪 2021-08-10 15:32:22
如何在新行上打印“apple”、“orange”和“pear”?去:const titlepage = `<html><h1>{{ .Title}}</h1><h1>{{ range $i := .Body}}{{$i}}{{end}}</h1></html>`type tp struct {    Title string    Body []string}func Read() ([]string) {    a := []string{"apple", "orange", "pear"}    return a}func main() {    as := tp{Title: "Hello", Body: Read()}    t := template.Must(template.New("Tele").Parse(titlepage))    t.Execute(os.Stdout, as)}电流输出:<html><h1>Hello</h1><h1>appleorangepear</h1></html>Go Playground 上的代码:http : //play.golang.org/p/yhyfcq--MM
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 269 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信