我有javascript從javascript調用控制器方法並返回json對象。一旦json對象返回,我想更新搜索字段下方的一個表格,它將顯示json對象的結果。基本上我試圖列出所有的對象,但是想要根據表單上的某些搜索過濾出結果。
以下是我用來獲取JSON對象的示例代碼:
$.ajax({
type: "GET",
dataType: "json",
url: "/students/search/" + this.value,
success: function(data){
// logic to update field
});
});
UPDATE:
JSON對象:
[{"student":{"student_type":"D", "student_name":"Blah Blah"}}]
我有一個表在我的html:
<table id="studentTable">
</table>
我願意柯添加student_type和student_name到表
您可以顯示您的JSON數據的外觀嗎?這將有助於我們就如何解決這個問題提供更具體的建議。 – 2011-01-27 02:47:06