真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ajax在jquery中請(qǐng)求和servlet中響應(yīng)的示例分析

這篇文章主要介紹ajax在jquery中請(qǐng)求和servlet中響應(yīng)的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專(zhuān)注于網(wǎng)頁(yè)設(shè)計(jì)、網(wǎng)站建設(shè)、微信開(kāi)發(fā)、小程序設(shè)計(jì)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶(hù)創(chuàng)新互聯(lián)還提供了源匯免費(fèi)建站歡迎大家使用!

在jsp中,首先,你需要導(dǎo)入jquery的架包:

獲取可返回站點(diǎn)的根路徑:

<% 
  String path = request.getContextPath(); 
%>

在jquery中寫(xiě)ajax請(qǐng)求:


     $(function(){
        $(".B").click(function(){
        $.ajax({
            type: "GET",
                     //對(duì)應(yīng)servlet中的方法
            url: "<%=path%>" + "/queryEvaluateByuserId.do",
                     //返回是json數(shù)據(jù)
            dataType: "json",
            async:false,
           data:{
            },
            success: function(data){
              str = "";
               if(data != null){
                               //循環(huán)表單列表
                 for (var i in data)
                  {
                     var num = parseInt(i) + 1 ;                         
                    str +="" + num + "" 
                    + data[i]['name'] + ""
                    + data[i]['price'] + "元" 
                    + "";
                  }
                 $(".trtd4").after(str);
               }else{
                 
               }
               
            },
            error: function(data){
            }
          }) 
      });
     }

jsp部分:

 
           
             
               
                序號(hào) 
                業(yè)主名 
                金額 
                            
             
          
          

在servlet中用到了阿里巴巴的快速轉(zhuǎn)換json的包c(diǎn)om.alibaba.fastjson.JSON:

private void queryEvaluateByuserId(HttpServletRequest request, HttpServletResponse response) throws SQLException, IOException, ServletException{
			HttpSession session=request.getSession();
			request.setCharacterEncoding("UTF-8");
			response.setContentType("text/html");
			response.setCharacterEncoding("UTF-8");
			Cookie[] cookies = request.getCookies();
			int ownerId = 0;
			for (int i = 0; i < cookies.length; i++) {
	      Cookie cookie = cookies[i];
	      if (cookie.getName().equals("ownerId")) {
	      	ownerId = Integer.parseInt(cookie.getValue()); 
	      }
			}
			List orderList = new ArrayList<>();
			List queryEvaluateList = new ArrayList<>();
			orderList = orderServiceImpl.queryOrderList(ownerId, null, null, null, null, null);
			List> workers = new ArrayList>(); 
			for(int i = 0;i < orderList.size();i++){
				Map order = new HashMap();
				order.put("description", orderList.get(i).getDescription());
				order.put("name", orderList.get(i).getOwnerName());
				System.out.println(orderList.get(i).getDescription());
				order.put("type",orderList.get(i).getTypeName());
				queryEvaluateList = orderServiceImpl.queryEvaluateListByUserId(orderList.get(i).getId());
				order.put("comment", queryEvaluateList.get(0).getComment());
				List allocation = orderServiceImpl.queryAllocationByOrderId(orderList.get(i).getId());
				order.put("price", String.valueOf(allocation.get(0).getPrice()));
				 System.out.println(order);
				workers.add(order);
			}
            //將map鍵值對(duì)轉(zhuǎn)換成json,傳給jsp
            response.getOutputStream().write(JSON.toJSONBytes(workers));
		}

以上是“ajax在jquery中請(qǐng)求和servlet中響應(yīng)的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)頁(yè)名稱(chēng):ajax在jquery中請(qǐng)求和servlet中響應(yīng)的示例分析
URL分享:http://weahome.cn/article/jposgo.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部