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.

Okay so I want to create something like this. I'm using JSON template

{.if title == 'default'}

/* Do something here */

{.end}

This is what it looks like when I format the page in json

"title" : "default"

But of course thats not working. Any suggestions?

share|improve this question

closed as not a real question by casperOne Oct 22 '12 at 12:01

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

May be you need to revise the code you're using...

syntax issues found

Normally the syntax should be like {.if title}

But you are free to try this!

{.if title == 'default') notice the ) in the code

but it should be like this

{.if title == 'default'}

Hope I could be of some help!

share|improve this answer
Thanks, but already picked that error up and still no luck :( – Nick Oct 20 '12 at 10:37
If I did {.if title} do something {.end} it works great, but I would like to know how can I target the output. "title" : "default" – Nick Oct 20 '12 at 10:38

According to the JSON template site: http://json-template.googlecode.com/svn/trunk/doc/Introducing-JSON-Template.html It does not support if statements or loops. They recommend you put such logic into your server-side code.

share|improve this answer
Well, I have several if statements on my code and it works 100% perfectly, but I'm not quite sure how to make it equals so and so. For example I have {.if mainImage} do so and so {.or} do nothing {.end} and works perfectly – Nick Oct 20 '12 at 8:04
So it looks like you cannot query a value in JSON in the template logic. Only way is to introduce custom keys into your JSON. E.g. add a new key value pair like {"isTitle" : "true"} and then you can check for isTitle in your template code. – mccannf Oct 20 '12 at 12:19

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