dswqz24846 2018-08-29 17:18
浏览 15
已采纳

通过删除数组来简化模板的使用

I am trying to simplify the template which I use to make it use a flatter data structure:

from

data := []App{App{"test data", []string{"app1", "app2", "app3"}}}

To:

data := App{App{"test data", []string{"app1", "app2", "app3"}}}

i.e. Remove the array of App, but when I try it I get an error.

Here is the working version: https://play.golang.org/p/2THGtDvlu01

I tried to change the template to

{{ range . -}}
{range $i,$a := .Command}{{if gt $i 0 }} && {{end}}{{.}}{{end}}
{{end}}

But I got an error of type mismatched, any idea how to fix it?

  • 写回答

1条回答 默认 最新

  • douji4948 2018-08-29 17:31
    关注
    package main
    
    import (
        "log"
        "os"
        "text/template"
    )
    
    func main() {
        // Define a template.
        const tmpl = `
    echo &1
    
    {{range $i,$a := .Command}}{{if gt $i 0 }} && {{end}}{{.}}{{end}}
    
    echo 2
    `
    
        // Prepare some data
        type App struct {
            Data    string
            Command []string
        }
        data := App{"test data", []string{"app1", "app2", "app3"}}
    
        // Create a new template and parse into it.
        t := template.Must(template.New("tmpl").Parse(tmpl))
    
        // Execute the template with data
        err := t.Execute(os.Stdout, data)
        if err != nil {
            log.Println("executing template:", err)
        }
    
    }
    

    Playground example

    Gives the output

    echo &1
    
    app1 && app2 && app3
    
    echo 2
    
    Program exited.
    

    If you remove the []App from your code, you also need to remove the range used in the template.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 ad5933的I2C
  • ¥15 请问RTX4060的笔记本电脑可以训练yolov5模型吗?
  • ¥15 数学建模求思路及代码
  • ¥50 silvaco GaN HEMT有栅极场板的击穿电压仿真问题
  • ¥15 谁会P4语言啊,我想请教一下
  • ¥15 哪个tomcat中startup一直一闪而过 找不出问题
  • ¥15 这个怎么改成直流激励源给加热电阻提供5a电流呀
  • ¥50 求解vmware的网络模式问题 别拿AI回答
  • ¥24 EFS加密后,在同一台电脑解密出错,证书界面找不到对应指纹的证书,未备份证书,求在原电脑解密的方法,可行即采纳
  • ¥15 springboot 3.0 实现Security 6.x版本集成