1
私の範囲が空であれば条件付きで何か別のものを表示するにはどうすればいいですか?範囲が空であるかどうかを知る方法?
{{range .Users}}
...
{{end}}
範囲が空白の場合は、別のHTMLブロックを表示する必要があります。
私の範囲が空であれば条件付きで何か別のものを表示するにはどうすればいいですか?範囲が空であるかどうかを知る方法?
{{range .Users}}
...
{{end}}
範囲が空白の場合は、別のHTMLブロックを表示する必要があります。
使用{{range pipeline}} T1 {{else}} T0 {{end}}
:
{{range pipeline}} T1 {{else}} T0 {{end}} The value of the pipeline must be an array, slice, map, or channel. If the value of the pipeline has length zero, dot is unaffected and T0 is executed; otherwise, dot is set to the successive elements of the array, slice, or map and T1 is executed.
例:
{{range .Users}}
...
{{else}}
<p>No users</p>
{{end}}
.Usersカウントが0より大きい場合どのように私はちょうどチェックだろうか?私はそれがループしないようにしたい。 – Blankman