为了账号安全,请及时绑定邮箱和手机立即绑定

结构切片到带有小胡子的未排序列表

结构切片到带有小胡子的未排序列表

Go
茅侃侃 2021-09-27 10:56:45
我有一个结构。type DataKey struct {    Id        int64     `db:"id"`    UserId    string    `db:"user_id"`    Data      string    `db:"data"`    CreatedAt time.Time `db:"created_at"`}我创建了一个结构片。data := []DataKey{}在执行 sql 查询并填充切片后,我尝试传递给mustache以构建我的列表。mustache.RenderFileInLayout("templates/datakeys.html.mustache", "templates/layout.html.mustache", user, data)))datakeys.html.mustache<table class="table table-striped"><thead>    <tr>        <th>#</th>        <th>UserID</th>        <th>DataKey</th>        <th>CreatedAt</th>    </tr></thead>{{#DataKey}}    <tr>        <td>{{Id}}</td>        <td>{{UserId}}</td>        <td>{{Data}}</td>        <td>{{CreatedAt}}</td>    </tr>{{/DataKey}}</table>我唯一得到的是表头。这个函数不返回错误,所以我不知道为什么它不喜欢数据。我也试过将它作为参考传递。
查看完整描述

1 回答

  • 1 回答
  • 0 关注
  • 154 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信