我想在$ .ajax电话之后转发或重定向页面
$(document).ready(function(){
$('#submit').on('click', function(){
var params = "";
$('#tableResultat > tbody > tr').each(function(){
$parent = $(this);
params += $parent.find('td:eq(0)').attr('id') + "," + $parent.find('td:eq(0)').text() + "," + $parent.find('td:eq(1)').text() + "," + $parent.find('td:eq(2)').text() +','+ $parent.find('td:eq(3)').text() +"|";
});
$.ajax({
type: 'POST',
url: '/resultat',
data:{
parametres : params
}
});
});
});
在我的服务器端我有这个:
protected void doPost(HttpServletRequest req, HttpServletResponse resp)throws ServletException, IOException
{
String action = req.getServletPath();
if(action.equals("/resultat"))
{
String params = req.getParameter("parametres");
//save these value in DB
req.getRequestDispatcher("WEB-INF/vues/resultat.jsp").forward(req, resp);
return;
}
}
我不明白为什么当我点击我的按钮时它不会将我转发到resultat.jsp页面?我做错了什么?
谢谢你的装备
答案 0 :(得分:0)
$ .ajax调用应该通过发送'成功'函数来接收响应并执行某些操作。
所以我认为在你的情况下最好做的是返回完整的URL(使用http://)并在你的ajax请求上执行此操作:
$.ajax({
type: 'POST',
url: '/resultat',
data:{
parametres : params,
success : function(response){
window.location.href = response;
}
});