如何使用文本/模板包评估字段?走

我有一个模板,我想使用text/template包评估各种字段。我很难弄清楚评估应该如何工作,因为下面的代码似乎失败了。模板包是否足够强大来处理这种评估?


type something struct{

    Brand   string

}

tpl := `{{if .Brand == "Coke"}} It's a coke{{else}} It's something else{{end}}`


aluckdog
浏览 177回答 1
1回答

MM们

模板包中有一个全局函数eq可以调用。不知道为什么它会这样工作,但这是代码type something struct{    Brand   string}tpl := `{{if eq .Brand "Coke"}} It's a coke{{else}} It's something else{{end}}`
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go