I am a newbie on CouchDB. I was familiar with JSON from quiet sometime. My problem now is a I have a pretty complex JSON data. I also read some of the documentation of mustache.js and felt it was very apt to render JSON. It's fine for rendering simple JSON, but how do I do if there exists nested objects. Below is my sample JSON:
{
"name": "John",
"email": "john@abc.com",
"files": {
"img1.jpg":
{"content_type": "image/jpeg", "revpos": 3, "length": 33423, "stub": true},
"img2.jpg":
{"content_type": "image/jpeg", "revpos": 2, "length": 146909, "stub": true}
}
}
I would like to display my name, email and the image file. How do I accomplish this using mustache.js