[golang] call the struct function in the template range

davidhhuan · · 3526 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

here is the code of a struct

type Post struct {
    Id          int    `db:"id"`
    Title       string `db:"title"`
    Content     string `db:"content"`
    Create_time int64    `db:"create_time"`
}

func (p Post) AttrCreatetime() time.Time {
    return time.Unix(p.Create_time, 0)
}
 

How to call the function "AttrCreatetime" in the template range? 

That is very simple to achieve it. Here is the code of the html file.

                        {{range .posts}}
            <article class="article ar-in">
                <div class="ar">
                    <span class="ar-ti">
                        <a href="{{url "Post.View" .Id}}" title="{{.Title}}">{{.Title}}</a>
                    </span>
                    <small>{{.AttrCreatetime}}</small>
                </div>
                <div class="ar-ds">
                    {{.Content}}
                    <span class="ar-mr"><a href="{{url "Post.View" .Id}}">more...</a></span>
                </div>
            </article>
            {{end}}

See? {{.AttrCreatetime}} is now la!

 

Have fun with golang!


有疑问加站长微信联系(非本文作者)

本文来自:博客园

感谢作者:davidhhuan

查看原文:[golang] call the struct function in the template range

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

3526 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传