- 相關(guān)推薦
jQuery解析json數(shù)據(jù)實例分析問題
先來看看我們的Json數(shù)據(jù)格式:
[{id:01,name:"小白",old:29,sex:"男"},{id:02,name:"小藍(lán)",old:29,sex:"男"},{id:03,name:"小雅",old:29,sex:"男"}]
為了消除亂碼問題,我們設(shè)置一個過濾器(代碼片段)
public void doFilter(ServletRequest req, ServletResponse resp, FilterChain chain) throws ServletException, IOException { req.setCharacterEncoding("UTF-8"); resp.setCharacterEncoding("UTF-8"); resp.setContentType("text/html;charset=UTF-8"); chain.doFilter(req, resp);}
服務(wù)端我用Servlet生成json數(shù)據(jù)(代碼片段)。
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { PrintWriter out = response.getWriter(); //過濾器已經(jīng)做過編碼轉(zhuǎn)化了。 resp.setContentType("text/html;charset=UTF-8"); StringBuffer sb = new StringBuffer(); sb.append("[{id:01,name:"小白",old:29,sex:"男"},"); sb.append("{id:02,name:"小藍(lán)",old:29,sex:"男"},"); sb.append("{id:03,name:"小雅",old:29,sex:"男"}]"); out.print(sb);}
頁面端JQuery代碼:
<%@ page="" contenttype="text/html;charset=UTF-8" language="java">
寫到.jsp、.txt文件中的json數(shù)據(jù),沒有被解析出來,F(xiàn)irebug中調(diào)試了一下,10行斷點下一步直接結(jié)束,就沒有遍歷對象數(shù)組。于是分別測試了一下文本文件 json.txtjsp文件 json.jspServlet json.do返回的數(shù)據(jù),瀏覽器只有解析出Servlet的返回的數(shù)據(jù)是json數(shù)據(jù)希望本文所述對大家jQuery程序設(shè)計有所幫助。
【jQuery解析json數(shù)據(jù)實例分析問題】相關(guān)文章:
原生ajax調(diào)用數(shù)據(jù)實例簡單講解07-19
硬盤的分區(qū)結(jié)構(gòu)及其數(shù)據(jù)儲存解析07-16
2024小升初數(shù)學(xué)濃度問題實例解答06-07
團(tuán)隊中的沖突問題分析02-06
科目三考試中常見問題解析02-03
網(wǎng)絡(luò)安全存在的問題及對策分析04-07
關(guān)于公共管理碩士MPA申請與就業(yè)問題的解析04-19
國有企業(yè)績效管理中存在的問題分析04-15