初级会员
  • 第 6747 位会员
  • wangsy
  • 2016-11-21 12:31:09
  • Offline
  • 22 90

最近发布的主题

最近发布的文章

    暂无

最近分享的资源

    暂无

最近发布的项目

最近的评论

  • 3楼 @suziming gay里gay气的,把项目放在```GoPath/src```目录下
  • #4 @YanXiShan ![image.png](https://static.studygolang.com/190531/1184c03fc0a18cd9780439296ea51ec7.png)
  • 感谢治好了我的颈椎病。最好的方式就是动手敲下代码,目前我看到的问题是,花括号对应不上。
  • cgo环境没设置好
  • ``` package main import ( "os" "text/template" ) func main() { name := "China" tmpl, err := template.New("test").Parse(`code element{{"{{"}}Status["BEIJING"]{{"}}"}}, {{.}}`) if err != nil { panic(err) } err = tmpl.Execute(os.Stdout, name) if err != nil { panic(err) } } ``` ``` package main import ( "os" "text/template" ) func main() { name := "China" tmpl, err := template.New("test").Delims("<<", ">>").Parse(`code element{{Status["BEIJING"]}}, <<.>>`) if err != nil { panic(err) } err = tmpl.Execute(os.Stdout, name) if err != nil { panic(err) } } ```