我需要向java后端发送ajax请求,并以两个html-block作为答案来响应(来自java后端)。我想使用两个不同的JSP生成这两个html块。我这样做如下:
req.setAttribute(...);
...
resp.setContentType("text/html");
RequestDispatcher dispatcher = req.getRequestDispatcher("one.jsp");
dispatcher.include(req, resp);
dispatcher = req.getRequestDispatcher("two.jsp");
dispatcher.include(req, resp);
它有效。但是在前端我得到的答案就像一个可靠的HTML代码(渲染了one.jsp +渲染的two.jsp)。但我需要将它作为两个单独的html块接收,以便将每个块放到它自己的块中。 这样做的正确方法是什么?
Ajax代码:
function addNew() {
var request = $.ajax({
url: "myUrl",
type: "post",
dataType: "html",
success: function(data) {
$("#divNameOne").html(<one part of data>);
$("#divNameTwo").html(<second part of data>);
},
error:function() {
alert("fail");
}
});
}
答案 0 :(得分:0)
在您的成功功能中,
var reponseHtml = $(data); // or you can use $($.parseHtml(data));
$("#divNameOne").html(responseHtml.find("#div1").html());
$("#divNameTwo").html(responseHtml.find("#div2").html());
它可能有用。