Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 677 Bytes

markup-filter-default.md

File metadata and controls

19 lines (12 loc) · 677 Bytes

| default

The | default filter returns the value passed as the first argument if the filtered value is undefined or empty, otherwise the filtered value is returned.

{{ variable | default('The variable is not defined') }}

{{ variable.foo | default('The foo property on variable is not defined') }}

{{ variable['foo'] | default('The foo key in variable is not defined') }}

{{ '' | default('The variable is empty')  }}

When using the default filter on an expression that uses variables in some method calls, be sure to use the default filter whenever a variable can be undefined:

{{ variable.method(foo | default('bar')) | default('bar') }}