Java Web 中使用 js 的ajax
阿新 • • 發佈:2018-12-20
很多時候大家多喜歡使用jquery的ajax從資料庫後端獲取動態資料,如
$.ajax({
url:'想要的路徑',
data:{'想要上傳的資料':'需要鍵值對形式'},
dataType:'json',
success:function(result){
alert(result);//返回的資料
}
});
在這裡雖然jquery的程式碼簡介易用,但是在某些瀏覽器裡不相容,所以還是要用js來操作。下面直接貼程式碼,
js程式碼:
function getDetails() { var url = location.href; var dir_no = url.substr(url.lastIndexOf('=')); var xhr = new XMLHttpRequest();//宣告這個變數 xhr.open('POST', 'servelt路徑');//設定方式和路徑,因為是Java web,所以是servlet的路徑 xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');//要傳值必須要設定這個屬性 var data = 'method=getDetails&dir_no' + dir_no;//把要上傳的資料定義成變數 xhr.send(data);//傳送資料 xhr.onreadystatechange = function() {//判斷返回的狀態資訊 if (xhr.readyState == 4) { if (xhr.status == 200) { var result = JSON.parse(xhr.responseText);//把返回的資訊解析成json格式 document.getElementById('user_name').innerText = result.user_name; document.getElementById('dis_pic').innerHTML = '<img src=' + result.goods_images[0] + ' />'; document.getElementById('name').innerHTML = '【' + result.goods_name + '】'; document.getElementById('price').innerHTML = '¥' + result.goods_price; document.getElementById('intro').innerHTML = result.goods_intro; document.getElementById('date').innerHTML = '釋出時間:' + result.goods_start_time; if (result.goods_state == '1') { document.getElementById('state').src = "images/sales.jpg"; } else { document.getElementById('state').src = "images/over.jpg"; } for (var i = 0; i < result.goods_images.length; i++) { document.getElementById('all_pic').innerHTML += '<img src=' + result.goods_images[i] + ' />'; } } } }
只用看加了註釋的行,其他都是我的頁面id資訊。
servlet程式碼:
public static void getDetails(HttpServletRequest request, HttpServletResponse response){ String dir_no = request.getParameter("dir_no");//這裡獲取從ajax上傳的資料 GoodsEntity goods = Jdbc.getGoods2(dir_no); UserEntity user = Jdbc.getUser(goods.getU_id()); List<ImgEntity> imgs = Jdbc.getImg(goods.getDir_no()); String[] images = new String[imgs.size()]; JSONObject json = new JSONObject();//宣告json物件,這需要導包。 json.accumulate("user_name", user.getUsername());//將資料加入json中 json.accumulate("goods_name", goods.getGoods_name()); json.accumulate("goods_price", goods.getPrice()); json.accumulate("goods_intro", goods.getIntroduce()); json.accumulate("goods_start_time", goods.getStart_time()); json.accumulate("goods_state", goods.getState()); int n=0; for(ImgEntity img:imgs){ images[n++] = img.getDir(); } json.accumulate("goods_images", images); Writes.write(response, json.toString());//將json寫出,讓response方法響應回去給ajax。 }
Write類的程式碼:
public class Writes {
public static void write(HttpServletResponse response,String s){
try {
PrintWriter out = response.getWriter();
out.write(s);
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
這裡json需要匯入的包如下,用紅色標記標好的包: