gpt4 book ai didi

templates - text/html 模板包中的 "range"操作和 "pipeline"说明。戈朗

转载 作者:IT王子 更新时间:2023-10-29 00:42:23 24 4
gpt4 key购买 nike

我试图在 text/html 模板包中获得一些优点。我已经从 golang 站点阅读了它的文档。很难理解 . (点)在一般和一定时间范围内行动。 “pipeline”到底是什么意思,可能因为我的英文不是母语,所以比较难理解):

{{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 := .}}
{{.}}
<b>{{$x}}</b><br>
<i>{{$.struct.ID}}</i><br>
<br>
# 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

雷纳特
雷纳特
1

{1 2 3.65 某事}
{1 2 3.65 Something}
1

最佳答案

管道

模板包中的管道指的是您将在命令行中执行的相同类型的“管道”。

例如,这是在 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. 是相同的。循环结束后,点指回传递到模板中的模型。

检查“结构”

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

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

这将在每次迭代时为您提供键和值。之后,您只需要检查是否相等:

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

See an example on the Go Playground here

希望对您有所帮助。

关于templates - text/html 模板包中的 "range"操作和 "pipeline"说明。戈朗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27972939/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com