模板語法
#基本語法
go 統一使用了 {{ 和 }} 作為左右標籤,沒有其他的標籤符號。如果您想要修改為其它符號,可以參考 模板標籤。
- 使用 . 來訪問當前位置的上下文
- 使用 $ 來引用當前模板根級的上下文
- 使用 $var 來訪問建立的變數
模板中支援的 go 語言符號
{{"string"}} // 一般 string
{{`raw string`}} // 原始 string
{{'c'}} // byte
{{print nil}} // nil 也被支援
#模板中的 pipeline
可以是上下文的變數輸出,也可以是函式通過管道傳遞的返回值
{{. | FuncA | FuncB | FuncC}}
當 pipeline 的值等於:
false 或 0
nil 的指標或 interface
長度為 0 的 array, slice, map, string
那麼這個 pipeline 被認為是空
#if … else … end
{{if pipeline}}{{end}}
if 判斷時,pipeline 為空時,相當於判斷為 False
this.Data["IsLogin"] = true
this.Data["IsHome"] = true
this.Data["IsAbout"] = true
支援巢狀的迴圈
{{if .IsHome}}
{{else}}
{{if .IsAbout}}{{end}}
{{end}}
也可以使用 else if 進行
{{if .IsHome}}
{{else if .IsAbout}}
{{else}}
{{end}}
range … end
{{range pipeline}}{{.}}{{end}}
pipeline 支援的型別為 array, slice, map, channel
range 迴圈內部的 . 改變為以上型別的子元素
對應的值長度為 0 時,range 不會執行,. 不會改變
pages := []struct {
Num int
}{{10}, {20}, {30}}
this.Data["Total"] = 100
this.Data["Pages"] = pages
使用 .Num 輸出子元素的 Num 屬性,使用 $. 引用模板中的根級上下文
{{range .Pages}}
{{.Num}} of {{$.Total}}
{{end}}
使用建立的變數,在這裡和 go 中的 range 用法是相同的。
{{range $index, $elem := .Pages}}
{{$index}} - {{$elem.Num}} - {{.Num}} of {{$.Total}}
{{end}}
range 也支援 else
{{range .Pages}}
{{else}}
{{/* 當 .Pages 為空 或者 長度為 0 時會執行這裡 */}}
{{end}}
with … end
{{with pipeline}}{{end}}
#with 用於重定向 pipeline
{{with .Field.NestField.SubField}}
{{.Var}}
{{end}}
也可以對變數賦值操
{{with $value := "My name is %s"}}
{{printf . "slene"}}
{{end}}
#wiith 也支援 else
{{with pipeline}}
{{else}}
{{/* 當 pipeline 為空時會執行這裡 */}}
{{end}}
#define
define 可以用來定義自模板,可用於模組定義和模板巢狀
{{define "loop"}}
{{.Name}}
{{end}}
#使用 template 呼叫模板
{{range .Items}}
{{template "loop" .}}
{{end}}
template
{{template “模板名” pipeline}}
將對應的上下文 pipeline 傳給模板,才可以在模板中呼叫
Beego 中支援直接載入檔案模板
{{template "path/to/head.html" .}}
Beego 會依據你設定的模板路徑讀取 head.html
在模板中可以接著載入其他模板,對於模板的分模組處理很有用處
#註釋
允許多行文字註釋,不允許巢狀
{{/* comment content
support new line */}}
基本函式
變數可以使用符號 | 在函式間傳遞
{{.Con | markdown | addlinks}}
{{.Name | printf "%s"}}
使用括號
{{printf "nums is %s %d" (printf "%d %d" 1 2) 3}}
and
{{and .X .Y .Z}}
and 會逐一判斷每個引數,將返回第一個為空的引數,否則就返回最後一個非空引數
#call
{{call .Field.Func .Arg1 .Arg2}}
call 可以呼叫函式,並傳入引數
呼叫的函式需要返回 1 個值 或者 2 個值,返回兩個值時,第二個值用於返回 error 型別的錯誤。返回的錯誤不等於 nil 時,執行將終止。
#index
index 支援 map, slice, array, string,讀取指定型別對應下標的值
this.Data["Maps"] = map[string]string{"name": "Beego"}
{{index .Maps "name"}}
len
{{printf "The content length is %d" (.Content|len)}}
返回對應型別的長度,支援型別:map, slice, array, string, chan
#not
not 返回輸入引數的否定值,if true then false else true
#or
{{or .X .Y .Z}}
or 會逐一判斷每個引數,將返回第一個非空的引數,否則就返回最後一個引數
#print
對應 fmt.Sprint
#printf
對應 fmt.Sprintf
#println
對應 fmt.Sprintln
#urlquery
{{urlquery “http://beego.me”}}
將返回
http%3A%2F%2Fbeego.me
#eq / ne / lt / le / gt / ge
這類函式一般配合在 if 中使用
eq: arg1 == arg2
ne: arg1 != arg2
lt: arg1 < arg2
le: arg1 <= arg2
gt: arg1 > arg2
ge: arg1 >= arg2
eq 和其他函式不一樣的地方是,支援多個引數,和下面的邏輯判斷相同
arg1==arg2 || arg1==arg3 || arg1==arg4 ...
與 if 一起使用
{{if eq true .Var1 .Var2 .Var3}}{{end}}
{{if lt 100 200}}{{end}}
學院Go語言視訊主頁
https://edu.csdn.net/lecturer/1928
清華團隊帶你實戰區塊鏈開發
掃碼獲取海量視訊及原始碼 QQ群:721929980
相關文章
- vue 模板語法Vue
- Vue模板語法Vue
- 007模板語法
- PHPTAL模板引擎語法PHP
- vue簡單模板語法Vue
- 模板語法 if 與 with 的區別
- Django學習——Django settings 原始碼、模板語法之傳值、模板語法之獲取值、模板語法之過濾器、模板語法之標籤、自定義過濾器、標籤、inclusion_tag、模板的匯入、模板的繼承Django原始碼過濾器繼承
- go 模板(template)的常用基本語法Go
- Vue快速上門(2)-模板語法Vue
- 02 #### Flask模板的語法+模板的渲染(本質:替換)Flask
- VUE.js第三課模板語法Vue.js
- Vue 的初階黑魔法 —— 模板語法Vue
- Blazor和Vue對比學習(基礎1.2):模板語法和Razor語法BlazorVue
- Vue 模板語法第一式 —— 插值Vue
- Node模板引擎學習(2)--Jade語法歸納
- Vue 3 元件基礎與模板語法詳解Vue元件
- 前端框架VUE——資料繫結及模板語法前端框架Vue
- 60行程式碼實現簡單模板語法行程
- .net 開源模板引擎jntemplate 教程:基礎篇之語法
- ES6語法學習之字串模板及字串查詢字串
- Vue模板語法、屬性繫結、條件渲染的學習Vue
- 3分鐘短文:Laravel模板,也支援一般程式語言的語法結構了Laravel
- dblink建立語句模板
- vue面試題:列舉說明vue的模板語法和常用指令?Vue面試題
- Python+django網頁設計入門(17):模板語法及應用PythonDjango網頁
- 模板語法之--強制資料繫結和繫結事件監聽事件
- 第三講、Vue3.x中的事件方法入門、模板語法模板中類和樣式繫結Vue事件
- 英語語法
- HTML語法大全_html語言語法大全(必看)HTML
- JavaScript 新語法 「雙問號語法」與「可選鏈語法」JavaScript
- [一、基本語法]1基本語法概述
- 語法與語義
- Wfurent 語語法概述
- Dart語法篇之基礎語法(一)Dart
- protobuf 語法,proto3 語法參考
- JAVA語法糖和語法糖編譯Java編譯
- AndroidManifest語法Android
- 語法糖