and
Syntax
and VALUE...
Returns
任意类型
在 Go 模板中,Falsy 值包括 false
,0
,任何 nil 指针或接口值,以及任何长度为零的数组、切片、映射或字符串。其余所有值都为 Truhty 值。
{{ and 1 0 "" }} → 0 (int)
{{ and 1 false 0 }} → false (bool)
{{ and 1 2 3 }} → 3 (int)
{{ and "a" "b" "c" }} → c (string)
{{ and "a" 1 true }} → true (bool)
详见 Go 的 text/template 文档获取更多信息。