在Go中执行此 *** 作的标准方法是什么?我也很想知道你们正在使用什么方法.
谢谢.
解决方法 我总是使用一个map并在其上定义一个函数,它返回给定键的文本:type Texts map[string]stringfunc (t *Texts) Get(key string) string{ return (*t)[key]}var texts = map[string]Texts{ "de":Texts{ "Title":"Deutscher Titel",},"en":Texts{ "Title":"English Title",}func executeTemplate(lang string){ tmpl,_ := template.New("example").Parse(`Title: {{.Texts.Get "Title" }} `) tmpl.Execute(os.Stdout,struct{ Texts Texts }{ Texts: texts[lang],})}总结
以上是内存溢出为你收集整理的处理多语言Go网络应用程序的标准/惯用方法是什么?全部内容,希望文章能够帮你解决处理多语言Go网络应用程序的标准/惯用方法是什么?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)