Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
I've no experience with liquid per se, which is why I can't post this as an answer, but you can use inspect in Ruby to print the contents of an object: apidock.com/ruby/Object/inspect . – polarblau May 30 '11 at 12:52
Thanks for the tip, but it doesn't work. – addedlovely May 30 '11 at 13:04

1 Answer

up vote 3 down vote accepted

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.

{{item | json}}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.