Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

iHub provides a fast feature to access array items called smart objects

Expressioncomment
{{array.first}}Gets the first object
{{array.first}}Gets the last object
{{array.index_n}}Gets the index object, n as number
{{array.all}}Get all the items, then use normal Mustache Iteration .example: {"body":"{{#array.all}}{{name}}{{/array.all}}"}

Mustache

Info
titleIterate over an array

example variable result of variable users: [ A, B , C ]

Body:

{{#users}}
"{{.}}"
{{/users}}

Result:

A,B,C,


...