我通过两个JSP页面发送信息,但我无法在第二页打印信息。
function sendSuccess (dir) {
console.log(jdata);
$.ajax({
url: dir,
type: "POST",
data: jdata,
contentType: "application/json"
})
.done(function( response ) {
$("#energyQuote").hide();
$("#success_msg").html(response).fadeIn('slow');
});
}
在使用console.log
声明的Google Chrome中,我得到了这个:
Object {name_id: "tre", tlfono: "435", email_id: "dg@dfss.ghj", consumo_hm: "324", numFront_id0: "324"…}consumo_hm: "324"cotizac_id: "24"email_id: "dg@dfss.ghj"kva_id0: "324"name_id: "tre"numFront_id0: "324"tlfono: "435"__proto__: Object
在第二个用于打印的JSP中:
<%= request.getAttribute("name_id") %>
<%= request.getParameter("name_id") %>
<%= ics.GetVar("jdata.type_Identify") %>
但我总是得到空值。
答案 0 :(得分:0)
在第二个JSP中,写下面的代码行
BufferedReader bf = request.getReader();
StringBuffer sbf = new StringBuffer();
String line = null;
while((line = bf.readLine())!=null){
sbf.append(line);
}
现在您可以根据需要使用sbf对象中的数据。