您好,登錄后才能下訂單哦!
用ajax獲取后臺數據,返回json數據,怎么在前臺使用呢?
后臺
if (dataType == "SearchCustomer") { int ID; if (Int32.TryParse(CustomerID, out ID)) { string s = GridComputer.GridCustomer.getCustomer(1, 1, ID); if (s == null) { context.Response.ContentType = "text/plain"; context.Response.Write("[{\"name\":無用戶,\"id\":\"0\",\"company\":\"無用戶\"}]"); } else { context.Response.Write(s); } } }
前臺
$(document).ready(function () { $("#Button3").click( function (SucCallback) { $.ajax( { type: "get", url: 'GridDatas.ashx', //后臺處理程序 dataType: 'json', //接受數據格式 data: 'DataType=SearchCustomer&CustomerID=' + document.getElementById("Text3").value, //要傳遞的數據 success:SucCallback, error: function () { alert("error"); } }); }) })
參考代碼
grid.getCustomer(1,2,function (data) { var list = '<p>' + tree_GridInfo._name + '的用戶有</p><br>'; list += '<table id="customers"><tr><th>姓名</th><th>電話</th></tr> '; $.each(data, function (i, n) { list += '<tr onclick="showUser(' + 1 + ')"><td>'; list += n.name + '</td>' + '<td>' + n.company; list += '</td></tr>'; }); $("#SearchResult").html(list)
看你的json數據是列表還是單個了,就一條就無需中括號了
context.Response.Write("{\"name\":無用戶,\"id\":\"0\",\"company\":\"無用戶\"}"); $(document).ready(function () { $("#Button3").click( function (SucCallback) { $.ajax( { type: "get", url: 'GridDatas.ashx', //后臺處理程序 dataType: 'json', //接受數據格式 data: 'DataType=SearchCustomer&CustomerID=' + document.getElementById("Text3").value, //要傳遞的數據 function (dataJson) { alert(dataJson.Name); alert(dataJson.Id); }, error: function () { alert("error"); } }); }) })
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。