Name
Name
方法在錯誤報告中非常有用。例如,假設你的短碼需要一個 “greeting” 參數:
layouts/shortcodes/myshortcode.html
{{ $greeting := "" }}
{{ with .Get "greeting" }}
{{ $greeting = . }}
{{ else }}
{{ errorf "該 %q 短碼需要一個 'greeting' 參數。請參見 %s" .Name .Position }}
{{ end }}
如果缺少 “greeting” 參數,Hugo 將會拋出錯誤訊息並使建構失敗:
ERROR 該 "myshortcode" 短碼需要一個 'greeting' 參數。請參見 "/home/user/project/content/about.md:11:1"