亚洲国产日韩欧美在线a乱码,国产精品路线1路线2路线,亚洲视频一区,精品国产自,www狠狠,国产情侣激情在线视频免费看,亚洲成年网站在线观看

jQuery解析json數(shù)據(jù)實例分析問題

時間:2024-09-14 21:24:05 JSON 我要投稿
  • 相關(guān)推薦

jQuery解析json數(shù)據(jù)實例分析問題

  先來看看我們的Json數(shù)據(jù)格式:

  [{id:01,name:"小白",old:29,sex:"男"},{id:02,name:"小藍",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:"小藍",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使用JSON數(shù)據(jù)格式案例分析01-10

jquery與json的結(jié)合的知識點講解08-10

2017考研英語長難句解析與實例分析01-24

jQuery中parent()和siblings()的問題10-16

jQuery 源碼分析和Ready函數(shù)06-28

PHP對象注入的實例分析08-27

德國留學(xué)申請實例分析09-28

分析競爭對手網(wǎng)站的幾個要點問題解析05-27

思科DHCP服務(wù)器配置實例解析07-25

六級考試簡答題實例解析12-26