I\'m using Handlebars templates and JSON data is already represented in [Object object], how do I parse this data outside of the Handlebars? For example, I\'m trying to popu
You are trying to pass templating syntax {{ }} inside a JSON object which is not valid.
{{ }}
You may need to do this instead:
myView = new myView({ user : user });