- 相關(guān)推薦
jQuery解析json數(shù)據(jù)實(shí)例分析問題
先來看看我們的Json數(shù)據(jù)格式:
[{id:01,name:"小白",old:29,sex:"男"},{id:02,name:"小藍(lán)",old:29,sex:"男"},{id:03,name:"小雅",old:29,sex:"男"}]
為了消除亂碼問題,我們?cè)O(shè)置一個(gè)過濾器(代碼片段)
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行斷點(diǎn)下一步直接結(jié)束,就沒有遍歷對(duì)象數(shù)組。于是分別測(cè)試了一下文本文件 json.txtjsp文件 json.jspServlet json.do返回的數(shù)據(jù),瀏覽器只有解析出Servlet的返回的數(shù)據(jù)是json數(shù)據(jù)希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。
【jQuery解析json數(shù)據(jù)實(shí)例分析問題】相關(guān)文章:
Ajax使用JSON數(shù)據(jù)格式案例分析01-10
jquery與json的結(jié)合的知識(shí)點(diǎn)講解08-10
2017考研英語長(zhǎng)難句解析與實(shí)例分析01-24
jQuery中parent()和siblings()的問題10-16
德國(guó)留學(xué)申請(qǐng)實(shí)例分析09-28