我用我的 ajaxCall 返回一个数组,如下所示: http ://d.pr/i/ojR4
对象内部是 Json(例如:http : //d.pr/i/aAM2)当我将它推送到我的 .hbs 文件(骨干网)时,不可能循环通过它,因为它是一个数组,它只接受普通的JSON。
有没有办法将它完全转换为 JSON?
我在下面的视图中的渲染函数:
render: function(){
var self = this;
var tripData;
console.log("[TripListView] render");
$.ajax({
url: Util.api + "/getalltrips",
type:"GET",
success: function(data){
console.log(data); // This is the output given
tripData = data;
}, error:function(){
console.log(arguments);
}
});
$('#container').html(this.template({trips: data}));
return this;
}