我将来自数据库的响应编码为 json,得到一个具有这种结构的 json,我使用 json_encode 从控制器发送回声(我在 php 中工作):
[
{column1: value, column2: value...} //row 1
{column1: value, column2: value...} //row 2
.... //row n
]
我的脚本(我在车把中的模板)是:
<script id="handlebars_deals_list" type="text/x-handlebars-template">
{{#each data}}
{{tittle}}
{{/each}}
</script>
我以这种方式传递了上下文:
var source=jQuery('#handlebars_deals_list').html();
var template = Handlebars.compile(source);
var context={data:response};//response is the json data I showed earlier
console.log(context); //Object{data="\n[{"id":"149417","biz_n......null,"index_deal":"0"}]"}
var html=template(context);
console.log(html); //empty!!?!?!?!!?!?!?!?!, why????
但我没有看到任何模板呈现