大家好,欢迎来到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