A Handlebars JSON helper
I’ve been working with Backbone pretty heavily over the last year with Handlebars being used as the templating engine.
For every project I usually end up adding a few helpers to Handlebars to aid in debugging. One of my favourites, and yet the simplest, is a helper to output an object (usually the model) to json inside the template.
The helper itself is super simple but very useful for debugging:
1 2 3 |
|
1 2 3 4 |
|
You would use this in any Handlebars view like so:
1 2 3 4 5 6 7 8 9 |
|
This is not something new. Rendr (from Airbnb) has this helper baked right in (although they escape the string, which is a good idea) - and I’m sure other frameworks have it or something similar.
Anyway, I hope this helps someone starting out a new backbone/handlebars project or even for debugging an existing one!