In Liquid, how can I find out all the values that a collection contains? Is there a print_r function or similar?
The example below will return the item title, but I would like to know what other variables item also holds.
item.title
Thanks.
|
In Liquid, how can I find out all the values that a collection contains? Is there a The example below will return the item title, but I would like to know what other variables item also holds.
Thanks. |
||||
|
Ah got there in the end! Not quite a print_r, but near enough to see whats available. This prints out the properties in JSON format, so you can see whats in there.
|
|||
|
|
inspectin Ruby to print the contents of an object: apidock.com/ruby/Object/inspect . – polarblau May 30 '11 at 12:52