Page-specific Data
- 25 Jan 2024
- 1 Minute to read
- DarkLight
Page-specific Data
- Updated on 25 Jan 2024
- 1 Minute to read
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
When working in a particular page of the space website, such as the contact page or the member's directory page, it is important to understand what data is available to you to use in that page.
The easiest way of knowing what data is available to a page is to just print it on the screen:
{{ data | Json }} //Prints all data available to the current page.
The code above prints all the data available to the current as well as all the common data, available to all pages. For clarity, you may want to print only data available to the current page.
{{ data.Local | Json }} //Prints all data available to the current page.
Was this article helpful?