久久久久无码精品,四川省少妇一级毛片,老老熟妇xxxxhd,人妻无码少妇一区二区

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

時(shí)間:2024-09-14 21:24:05 JSON 我要投稿
  • 相關(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

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

PHP對(duì)象注入的實(shí)例分析08-27

德國(guó)留學(xué)申請(qǐng)實(shí)例分析09-28

分析競(jìng)爭(zhēng)對(duì)手網(wǎng)站的幾個(gè)要點(diǎn)問題解析05-27

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

六級(jí)考試簡(jiǎn)答題實(shí)例解析12-26