如何从ajax发布获取响应有效负载?

时间:2019-05-14 12:47:11

标签: javascript ajax http-post

我有这个ajax POST功能:

$.ajax({
           type: "POST",
           url: "http://localhost:8080/MaJSPProject/MainServlet/*",
           dataType: 'JSON',
           data: {pTableData:JSON.stringify(TableData), 
           operation:"operationOnServlet", dropdownField: 
           document.getElementById('dropdownField').value},
           success: function(response){

                console.log(response);
                alert("response"); 
           }
       });

我想获取响应变量,因为我正在从Servlet向JSP发送消息。它确实已发送,如下所示:enter image description here

但是,什么也没发生。控制台中没有任何内容,也没有警报。 如何在JSP中访问该值?在查看了有关SO的其他问题之后,我认为我可以做的事。

0 个答案:

没有答案