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

我有一个结构。


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>

我唯一得到的是表头。这个函数不返回错误,所以我不知道为什么它不喜欢数据。我也试过将它作为参考传递。



茅侃侃
浏览 155回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go