我是 JQuery 的新手。我有一个 servlet,它将从数据库中获取数据,并将结果保留为请求,并在 jsp 文件中检索相同的结果。现在我必须使用 ajax jquery 调用 servlet 来加载数据。我正在做如下。但它没有加载。请帮我。
$('#myForm #revert').click(function() {
$.ajax({
type: "GET",
url: "./myController",
success: function(msg) {
<span style="color:green;font-weight:bold">Successful</span>');
},
error: function(ob,errStr) {
//Todo
}
});
});
小服务程序代码:
//Service call gets data and the result is kept in request scope as below
request.setAttribute("myresult", result);
request.getRequestDispatcher("/WEB-INF/myScreen.jsp").forward(request, response);
谢谢!