JSON Array Parse not working

Im with this template

<script id="template" type="text/template7">
<p>Hello, my name is
{{#each list}}
{{nome}} {{id}}
{{/each}}</p>
</script>

and this js

var template = $$('#template').html();
var compiledTemplate = Template7.compile(template);

app.request.get('results.json', {'id' : '1'}, function (data) {
    $$('#content-wrap').html(compiledTemplate(data))
});

but it’s outputting only text outside #each tags, this is working on v2? Or is with another code?

And what is in your data?