英文:
Go templates: Currency pipe format?
问题
我正在尝试在Go模板中表示货币。
{{.cash}}
但是现在,cash的值是1000000。
是否有可能将其输出为1,000,000?
是否有类似于{{.cash | Currency}}的格式化器?
如果没有,我该如何获得所需的输出?
谢谢。
英文:
I'm trying to represent money in a go template.
{{.cash}}
But right now, cash comes as 1000000
Would it be possible to make it output 1,000,000 ?
Is there some sort of {{.cash | Currency}} formatter?
If not, how do I go about getting the desired output?
Thanks.
答案1
得分: 1
你可以利用github.com/dustin/go-humanize
来实现这个功能。
funcMap := template.FuncMap{
"comma": humanize.Comma,
}
t := template.New("").Funcs(templateFuncs).Parse(`A million: {{comma .}}`)
err := tmpl.Execute(os.Stdout, 1000000)
if err != nil {
log.Fatalf("execution: %s", err)
}
// A million: 1,000,000
英文:
You can leverage github.com/dustin/go-humanize
to do this.
funcMap := template.FuncMap{
"comma": humanize.Comma,
}
t := template.New("").Funcs(templateFuncs).Parse(`A million: {{comma .}}`)
err := tmpl.Execute(os.Stdout, 1000000)
if err != nil {
log.Fatalf("execution: %s", err)
}
// A million: 1,000,000
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论