如果這是一個多餘的問題,請讓我知道並指出我在那裏,但我沒有找到確切的問題/答案組合或兩者的混合物。PHP,Ajax,JSON和把手
我在jQuery中有一些調用php頁面的函數的ajax。如果沒有把手,json數據會很好,很漂亮。那裏沒有問題。但是,我似乎無法得到ajax寫出我的結果到句柄模板。這裏是我現在的代碼:
$.ajax({
type: "post",
url: "../includes/db_functions.inc.php",
data: ({ p : p, p2 : p2, f : f }),
dataType: "json",
success: function(results){
$.each(results, function(i, item){
var context = [
{
id : item[i].id,
clock_number : item[i].clock_number,
}
],
template = Handlebars.compile($('#template').html());
$('table.entries').append(template(context));
});
}
});
有人知道我可能會在這裏失蹤嗎?我99%確定它在上下文領域,但沒有找到它。
[編輯]
<table class="entries">
<script id="template" type="text/x-handlebars-template">
<tr>
<td>{{id}}</td>
<td>{{clock_number}}</td>
</tr>
</script>
</table>
我是唯一試圖做到這一點的猴子?大聲笑 – tattooedgeek 2013-04-09 17:03:47