douting1871 2017-09-08 09:05
浏览 55
已采纳

Golang代码重复html代码n次

I am working on golang web app. In that I need to iterate an HTML line n number of times.

func index(w http.ResponseWriter, r *http.Request) {
    tmpl := template.Must(template.ParseFiles("templates/index.html"))
    n := 5
    tmpl.Execute(w, n)
}

<ul>
    <li><a href="/?page=1">1</a></li>
    <li><a href="/?page=2">2</a></li>
                    .
                    .
                    .
    <li><a href="/?page=n">n</a></li>
</ul>

How can I implement this?

  • 写回答

1条回答 默认 最新

  • doufeng1249 2017-09-08 09:12
    关注

    To repeat something in Go templates, you may use the {{range}} action. But the {{range}} action expects something it can iterate over, e.g. a slice, array or map.

    Passing a zero-value slice

    So you have to feed that. But an empty slice which requires no memory is sufficient, e.g. make([]struct{}, n).

    The template code:

    const templ = `<ul>
    {{range $idx, $e := .}}
        <li><a href="/?page={{$idx}}">{{$idx}}</a></li>
    {{end}}
    </ul>`
    

    Testing it:

    tmpl := template.Must(template.New("").Parse(templ))
    n := 5
    if err := tmpl.Execute(os.Stdout, make([]struct{}, n)); err != nil {
        panic(err)
    }
    

    Output (try it on the Go Playground):

    <ul>
    
        <li><a href="/?page=0">0</a></li>
    
        <li><a href="/?page=1">1</a></li>
    
        <li><a href="/?page=2">2</a></li>
    
        <li><a href="/?page=3">3</a></li>
    
        <li><a href="/?page=4">4</a></li>
    
    </ul>
    

    Using a filled slice

    As we can see, indices start from 0. If this is an issue, you may opt to not use the index, but fill the passed slice explicitly with the elements you want. Then the template will look like this:

    const templ = `<ul>
    {{range .}}
        <li><a href="/?page={{.}}">{{.}}</a></li>
    {{end}}
    </ul>`
    

    And an example test code that feeds only the odd numbers starting with 2 could look like this:

    tmpl := template.Must(template.New("").Parse(templ))
    n := 5
    values := make([]int, n)
    for i := range values {
        values[i] = (i + 1) * 2
    }
    if err := tmpl.Execute(os.Stdout, values); err != nil {
        panic(err)
    }
    

    Output this time (try it on the Go Playground):

    <ul>
    
        <li><a href="/?page=2">2</a></li>
    
        <li><a href="/?page=4">4</a></li>
    
        <li><a href="/?page=6">6</a></li>
    
        <li><a href="/?page=8">8</a></li>
    
        <li><a href="/?page=10">10</a></li>
    
    </ul>
    

    Using a zero-valued slice and custom function

    If you don't want to bother filling the slice and you only need increasing numbers starting from 1, another option would be to register a function that receives a number, adds 1 to it and returns the result. So you may continue to use the indices of a zero-valued slice, and you can call the custom function to obtain a number equal to index+1:

    func main() {
        tmpl := template.Must(template.New("").Funcs(template.FuncMap{
            "Add": func(i int) int { return i + 1 },
        }).Parse(templ))
        n := 5
        if err := tmpl.Execute(os.Stdout, make([]struct{}, n)); err != nil {
            panic(err)
        }
    }
    
    const templ = `<ul>
    {{range $idx, $e := .}}{{$idx := (Add $idx)}}
        <li><a href="/?page={{$idx}}">{{$idx}}</a></li>
    {{end}}
    </ul>`
    

    Output this time (try it on the Go Playground):

    <ul>
    
        <li><a href="/?page=1">1</a></li>
    
        <li><a href="/?page=2">2</a></li>
    
        <li><a href="/?page=3">3</a></li>
    
        <li><a href="/?page=4">4</a></li>
    
        <li><a href="/?page=5">5</a></li>
    
    </ul>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密
  • ¥15 关于#qt#的问题:我想实现qcustomplot完成坐标轴
  • ¥15 下列c语言代码为何输出了多余的空格