英文:
Golang template stop rendering
问题
我正在渲染一个响应。
在我的代码中,我传递了一个包含结构体的切片来显示一些信息。
在某个地方,我使用了一个选择(select)语句,并使用range方法渲染选项。
package main
import (
"fmt"
"html/template"
"os"
)
func main() {
lista := [3]string{"one", "two", "tree"}
fmt.Println("Hello, playground")
a := `<script type="text/text">{{range .}} <option></option>hi{{end}}</script> \n <script type="text/text">{{range .}} <option>hi!{{end}}</script> <script type="text/text">{{range .}} <option>hi!{{end}}</script> <script type="text/text">{{range .}} <option>hi!{{end}}</script>`
tmp, _ := template.New("tmp").Parse(a)
tmp.Execute(os.Stdout, lista)
}
编辑
我复制了这个问题
http://play.golang.org/p/d62J3TOc1N
如果你添加</option>
或任何其他闭合标签(以/开头),渲染将不会发生。
英文:
im rendering a response.
in my code I passed a Slice with structs to display some info
in one place i use a select and the options are rendered with a range method
package main
import ("fmt"
"html/template"
"os"
)
func main() {
lista:=[3]string{"one","two","tree"}
fmt.Println("Hello, playground")
a:=`<script type="text/text">{{range .}} <option></option>hi{{end}}</script> \n <script type="text/text">{{range .}} <option>hi!{{end}}</script> <script type="text/text">{{range .}} <option>hi!{{end}}</script> <script type="text/text">{{range .}} <option>hi!{{end}}</script>`
tmp,_:=template.New("tmp").Parse(a)
tmp.Execute(os.Stdout,lista)
}
EDIT
I replicated the issue
http://play.golang.org/p/d62J3TOc1N
if you add the </option> or any other closure tag (starting with /) the render won't happened
答案1
得分: 0
将“html/template”替换为“text/template”。
你得到了预期的结果吗?
英文:
Replace "html/template" with "text/template"
Do you get the expected result?
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论