50

我有这个结构:

const (
    paragraph_hypothesis = 1<<iota
    paragraph_attachment = 1<<iota
    paragraph_menu       = 1<<iota
)

type Paragraph struct {
    Type int // paragraph_hypothesis or paragraph_attachment or paragraph_menu
}

我想以Type依赖的方式显示我的段落。

我发现的唯一解决方案是基于专用功能,例如isAttachment测试Typein Go 和 nested {{if}}

{{range .Paragraphs}}
    {{if .IsAttachment}}
        -- attachement presentation code  --
    {{else}}{{if .IsMenu}}
        -- menu --
    {{else}}
        -- default code --
    {{end}}{{end}}
{{end}}

事实上,我有更多类型,这使得它更加奇怪,将 Go 代码与IsSomething函数和模板与那些{{end}}.

什么是干净的解决方案?go 模板中有一些switch或解决方案吗?if/elseif/else还是用完全不同的方式来处理这些案件?

4

3 回答 3

46

模板是无逻辑的。他们不应该有这种逻辑。您可以拥有的最大逻辑是一堆if.

在这种情况下,你应该这样做:

{{if .IsAttachment}}
    -- attachment presentation code --
{{end}}

{{if .IsMenu}}
    -- menu --
{{end}}

{{if .IsDefault}}
    -- default code --
{{end}}
于 2013-06-07T13:55:24.090 回答
42

是的,您可以使用{{else if .IsMenu}}

于 2018-07-12T14:36:28.933 回答
11

您可以通过向template.FuncMapswitch添加自定义函数来实现功能。

在下面的示例中,我定义了一个函数,printPara (paratype int) string该函数采用您定义的段落类型之一并相应地更改其输出。

请注意,在实际模板中,.Paratype是通过管道传递到printpara函数中的。这是在模板中传递参数的方法。FuncMap请注意,添加到s的函数的输出参数的数量和形式存在限制。这个页面有一些很好的信息,以及第一个链接。

package main

import (
    "fmt"
    "os"
    "html/template"
)

func main() {

    const (
        paragraph_hypothesis = 1 << iota
        paragraph_attachment = 1 << iota
        paragraph_menu       = 1 << iota
    )

    const text = "{{.Paratype | printpara}}\n" // A simple test template

    type Paragraph struct {
        Paratype int
    }

    var paralist = []*Paragraph{
        &Paragraph{paragraph_hypothesis},
        &Paragraph{paragraph_attachment},
        &Paragraph{paragraph_menu},
    }

    t := template.New("testparagraphs")

    printPara := func(paratype int) string {
        text := ""
        switch paratype {
        case paragraph_hypothesis:
            text = "This is a hypothesis\n"
        case paragraph_attachment:
            text = "This is an attachment\n"
        case paragraph_menu:
            text = "Menu\n1:\n2:\n3:\n\nPick any option:\n"
        }
        return text
    }

    template.Must(t.Funcs(template.FuncMap{"printpara": printPara}).Parse(text))

    for _, p := range paralist {
        err := t.Execute(os.Stdout, p)
        if err != nil {
            fmt.Println("executing template:", err)
        }
    }
}

产生:

这是一个假设

这是附件

菜单
1:
2:
3:

选择任何选项:

游乐场链接

希望对您有所帮助,我很确定可以对代码进行一些清理,但是我已尝试与您提供的示例代码保持一致。

于 2013-06-08T02:43:50.640 回答