Global References
Last updated
Last updated
In Squirrelly, a reference is a single value that's passed in as an option to the template. There are two types of references, global references and .
Put a global reference between the opening and closing delimeters (by default {{
and }}
.
Global references are always in the global scope, and can be written anywhere in your code. Since Squirrelly templates parse into JavaScript, you can write a reference like this: <p>This is the child of an object: {{user.lastName}}</p>
or like this:
<p>This is the child of an object: {{user['lastName']}}</p>
.
There can be spaces after the beginning bracket and before the closing bracket, but any reference that doesn't point to an actual value or is an invalid expression, like{{hi people}} (notice the space)
will make your code break!