Beego之模板

Beego之模板bar htmlbar lower index html name if body 男 else 女 end range scores end br ra

大家好,欢迎来到IT知识分享网。

在这里插入图片描述
bar.html

bar: { 
   { 
    .|lower }} 

index.html

{ 
   { 
    .name }} { 
   { 
    if .body }}{ 
   { 
    else }}{ 
   { 
    end }} { 
   { 
    range .scores }} { 
   { 
   .}}| { 
   { 
    end }} <br/> { 
   { 
    range $index,$value := .scores }} { 
   { 
   $index}} = { 
   { 
   $value}} <br /> { 
   { 
    end }} { 
   { 
    range .users }} { 
   { 
    . }} { 
   { 
    end }} { 
   { 
    range $key, $value := .users }} { 
   { 
    $key }} = { 
   { 
    $value }} <br/> { 
   { 
    end }} { 
   { 
    lower .content }} { 
   { 
    .content|lower }} { 
   { 
    define "lower" }} 输入内容: { 
   { 
    .|lower }} { 
   { 
    end }} { 
   { 
    template "lower" .content }} { 
   { 
    template "lower" .content }} { 
   { 
    template "lower" .content }} { 
   { 
    template "lower" .content }} { 
   { 
    template "lower" .content }} { 
   { 
    template "lower" .content }} <br /> { 
   { 
    template "bar.html" .content}} { 
   { 
    template "bar.html" .content}} { 
   { 
    template "bar.html" .content}} { 
   { 
    template "bar.html" .content}} { 
   { 
    template "bar.html" .content}} 

main.go

package main import ( "strings" "github.com/astaxie/beego" ) type HomeController struct { 
    beego.Controller } func (c *HomeController) Index() { 
    c.Data["name"] = "kk" c.Data["body"] = true c.Data["scores"] = []float32{ 
   1, 2, 3, 4} c.Data["users"] = map[int]string{ 
   1: "kk", 2: "wc"} c.Data["content"] = "abc.ABC" c.TplName = "index.html" // 默认后缀只支持html, tpl } func (c *HomeController) Home() { 
    // 若无任何响应,则加载控制器名称/Action名.tpl文件显示 } func main() { 
    beego.AddFuncMap("lower", func(in string) string { 
    return strings.ToLower(in) }) beego.AutoRouter(&HomeController{ 
   }) beego.Run() } 

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/153292.html

(0)
上一篇 2025-03-04 19:25
下一篇 2025-03-04 19:26

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注微信