如何在golang模板中使用除法?

时间:2015-04-14 11:50:30

标签: go

如何在golang模板中使用除法。我需要将Id除以2。

例如

{{if .Id/2}}
HEY, I CAN DO IT!
{{else}}
WHY???
{{end}}

1 个答案:

答案 0 :(得分:12)

text/template(以及随后的html/template)可以通过使用Template.Funcs将分部定义为函数来提供功能:

func (t *Template) Funcs(funcMap FuncMap) *Template

在您的情况下,具有除法函数的FuncMap可能如下所示:

fm := template.FuncMap{"divide": func(a, b int) int {
    return a / b
}}

完整示例(但我没有尝试理解您对if a/2的意思):

package main

import (
    "os"
    "text/template"
)

func main() {
    fm := template.FuncMap{"divide": func(a, b int) int {
        return a / b
    }}

    tmplTxt := `{{divide . 2}}`

    // Create a template, add the function map, and parse the text.
    tmpl, err := template.New("foo").Funcs(fm).Parse(tmplTxt)
    if err != nil {
        panic(err)
    }

    // Run the template to verify the output.
    err = tmpl.Execute(os.Stdout, 10)
    if err != nil {
        panic(err)
    }
}

<强>输出:

  

5

游乐场: http://play.golang.org/p/VOhTYbdj6P