热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

text/html模板包中的"范围"操作和"管道"说明.Golang

如何解决《text/html模板包中的"范围"操作和"管道"说明.Golang》经验,为你挑选了1个好方法。

我尝试在text/html模板包中获得一些优点.我从golang网站上读过它的文档.很难理解究竟是什么意思.(点)一般而且在范围动作的某个时间.究竟什么意思是"管道",也许很难理解,因为我的英语不是母语):

{{pipeline}}
The default textual representation of the value of the pipeline
is copied to the output.

我们来看一个例子:

    data := map[string]interface{}{
        "struct": &Order{
            ID:     1,
            CustID: 2,
            Total:  3.65,
            Name: "Something",
        },
        "name1":  "Timur",
        "name2": "Renat",
    }
    t.ExecuteTemplate(rw, "index", data)

这是"索引":

{{define "index"}}
    {{range $x := .}}
        {{.}}
        {{$x}}
{{$.struct.ID}}

# the lines below don't work and break the loop # {{.ID}} # or # {{.struct.ID}} # what if I want here another range loop that handles "struct" members # when I reach "struct" field in the data variable or just do nothing # and just continue the loop? {{end}} {{end}}

输出:

帖木儿
帖木儿
1

Renat
Renat
1

{1 2 3.65 Something}
{1 2 3.65 Something}
1



1> Simon Whiteh..:

管道

模板包中的管道指的是您在命令行中执行的相同类型的"管道".

例如,这是在Mac上为您的NIC分配默认网关的一种方法:

route -n get default | grep 'gateway' | awk '{print $2}'

基本上,route -n get default先运行.管道字符不是将结果打印到控制台,而是|"获取route命令的输出,并将其推入grep命令".此时,grep 'gateway'运行它接收的输入route.grep然后将输出推入awk.最后,由于没有更多的管道,您在屏幕上看到的唯一输出是awk想要打印的内容.

这在模板包中是相同的.您可以将值传递给方法调用并将它们链接在一起.如:

{{ "Hello world!" | printf "%s" }}

这相当于 {{ printf "%s" "Hello World!" }}

See an example in the Go Playground here

基本上,

{{ "Hello World!" | printf "%s"           }}
    ^^^^^^^^^^^^               ^^^^^^^^^^
         |__________________________|

这在函数式语言中是非常常见的(从我所看到的......我知道它在F#中的一个东西).

点.

点是"上下文意识".这意味着,它取决于你把它放在哪里改变意义.当您在模板的正常区域中使用它时,它就是您的模型.在range循环中使用它时,它将成为迭代的当前值.

See an example in the Go Playground here

在链接示例中,仅在范围循环内,$x并且.是相同的.循环结束后,点返回传递给模板的模型.

检查"struct"

你的结构是一个键值对... a map.为此,您需要确保在范围循环中提取两个部分:

{{ range $key, $value = . }}

这将为您提供每次迭代时的键和值.之后,您只需要检查相等性:

{{ if eq $key "struct" }}
    {{ /* $value.ID is the ID you want */ }}

See an example on the Go Playground here

希望这会有所帮助.


推荐阅读
author-avatar
Levenmamatq_267
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有