使用 Golang 实现 HTML 模板渲染
来源:stackoverflow
时间:2024-03-19 22:57:28 492浏览 收藏
在 Golang Web 应用程序中,使用 Revel 框架进行 HTML 模板渲染时遇到问题。模板未显示预期数据,仅显示空值。这可能是由于模板语法不正确或数据未正确传递给模板所致。解决方案包括检查模板语法、确保数据非空,并使用正确的语法来访问数据结构字段。
问题内容
我希望有人能够帮助我。我已经开始构建一个网络应用程序,并决定使用 go 和 revel。到目前为止,我已经学到了很多东西,但有一个功能我似乎无法使用。我有以下代码:
package controllers import ( "github.com/revel/revel" _ "github.com/denisenkom/go-mssqldb" "database/sql") type app struct { *revel.controller } type resultrow struct { transactiondomain string transactiontype string transactionisoresponse string store string terminal string vendor string requestdt string responsedt string accountdisplay string accountdetails1 string invoicenumber string amount string } type colnames struct { name string } type resulttable struct { fpk string columns []colnames resultrows []resultrow } func (c app) fpktable() revel.result { //all db section goes here. i have confirmed the results are obtaind back //from the db. err = rows.scan(&resrow.transactiondomain, &resrow.transactiontype, &resrow.transactionisoresponse, &resrow.store, &resrow.terminal, &resrow.vendor, &resrow.requestdt, &resrow.responsedt, &resrow.accountdisplay, &resrow.accountdetails1, &resrow.invoicenumber, &resrow.amount) if err != nil { revel.info.println("scan failed:", err.error()) } arrrow = append(arrrow, resrow) } columnnames := []colnames{{name:"domain"}, {name:"type"}, {name:"vendor response"}, {name:"store"}, {name:"register"}, {name:"request dt"}, {name:"response dt"}, {name:"account"}, {name:"token"}, {name:"invoice"}, {name:"amount"}} table := &resulttable{c.request.formvalue("store") + "-" + c.request.formvalue("register") + "-" + c.request.formvalue("invoice") + "-" + c.request.formvalue("date"), columnnames, arrrow} return c.render(table)
我有以下 html 模板:
<div class="row"> <a>{{.fpk}}</a> <ul> {{range .columns}} <li>{{.name}}</li> {{end}} </ul> </div>
我期待看到这样的事情
<div class="row"> <a>aaa-bbb-ccc-ddd</a> <ul> <li>domain</li> <li>type</li> . . . </ul> </div>
但相反,我没有将任何值传递到模板中
<div class="row"> <a></a> <ul> </ul> ::after //This line makes me believe the processing of the //template is being done properly except the data //is not being passed properly to the template. </div>
我浏览了所有可能的网站,想知道这个问题,但一直找不到解决方案。
我确信这会很简单,但无论如何,感谢您提供的任何帮助。
解决方案
我不确定你的模板语法,通常我会这样做:
<div class="row"> <a>{{.fpk}}</a> <ul> {{range $index, $element := .columns}} <li>{{$element.Name}}</li> {{end}} </ul> </div>
我能想到的另一件事是您的数据可能为空,您是否尝试检查列结构字段以查看它是否包含数据?
以上就是《使用 Golang 实现 HTML 模板渲染》的详细内容,更多关于的资料请关注golang学习网公众号!
声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
502 收藏
-
502 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
139 收藏
-
204 收藏
-
325 收藏
-
477 收藏
-
486 收藏
-
439 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习