英文:
Html template use on golang
问题
抱歉,我只能提供中文翻译。以下是您要翻译的内容:
对不起,我是初学者,我阅读了Golang文档,但理解得不够好。
我有一个index.html文件:
<html>
<head>
</head>
<body>
<form action type="checkbox" name="test" value="A" {{.checked}}>
<input type="submit" value="save">
</body>
</html>
在main.go文件中,如果用户点击保存按钮,然后检查复选框,重定向到该页面并显示复选框已选中。
英文:
Sorry im beginner and i read golang.docs but didnt understand well.
i`ve : index.html:
<html>
<head>
</head>
<body>
<form action type="checkbox" name="test" value="A" {{.checked}}>
<input type="submit" value="save">
</body>
</html>
in main.go
if user click save button then check checkbox redirect that page and show checkbox checked
答案1
得分: 1
你可以在map中发送变量。例如:
package main
import (
"bytes"
"fmt"
"text/template"
)
func main() {
t, _ := template.New("hi").Parse("Hi {{.name}}")
var doc bytes.Buffer
t.Execute(&doc, map[string]string{"name": "Peter"})
fmt.Println(doc.String()) //Hi Peter
}
英文:
You could send variables in map. For example:
package main
import (
"bytes"
"fmt"
"text/template"
)
func main() {
t, _ := template.New("hi").Parse("Hi {{.name}}")
var doc bytes.Buffer
t.Execute(&doc, map[string]string{"name": "Peter"})
fmt.Println(doc.String()) //Hi Peter
}
答案2
得分: 0
。
在Go代码中被定义。
请提供执行模板的Go代码片段,类似以下代码:
t, _ := template.ParseFiles(tmpl + ".html")
t.Execute(w, data) // data必须包含字段"checked"
或者
templates.ExecuteTemplate(w, tmpl+".html", data) // data必须包含字段"checked"
你可以将任何类型(interface{})作为"data"传递给执行模板的函数。通常情况下,它是一个结构体或者一个map[string]string
。
如何设置"checked"
可能在main.go
的处理程序中根据提交的表单设置了"checked"。
阅读文档并更好地解释它。请参考文档获取更详细的信息。
英文:
The .
is defined in go code.
Please provide the snippet of your go code where the template is executed, something like the following codes:
t, _ := template.ParseFiles(tmpl + ".html")
t.Execute(w, data) // the data must feature the field "checked"
Or
templates.ExecuteTemplate(w, tmpl+".html", data) // the data must feature the field "checked"
You can pass any type(interface{}) to a functions that execute a template as "data". Usually it is a Struct or a Map[string]string.
How to set the checked
Probably the "checked" is setted in the main.go at handler according to the posted form.
Read the docs and explain it better. Please
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论