gpt4 book ai didi

java - 从 JavaScript 到 servlet 的 Ajax 调用

转载 作者:行者123 更新时间:2023-11-30 17:01:15 27 4
gpt4 key购买 nike

我正在尝试从 html 文件对 servlet 类进行 AJAX 调用以传递变量但未获得任何输出。请检查下面的代码并建议应该进行的更改。

This is my project structure

FrontPage.html

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function func() {

var build = document.getElementById('name').textContent;

$.ajax({

type : 'GET',
url : 'http://localhost:8081/Sample/TestServlet',
data : build,

success : function(data) {
alert("Success");

},
error : function() {
alert("Error");
}
});
}
</script>
<meta charset="ISO-8859-1">
<title>Insert title here</title>
</head>
<body>

<a id="name" href="#" onClick="func();">Build1</a>

</body>
</html>

这是TestServlet.java。这是尝试使用 Ajax 调用打印从 javascript 函数传递的变量:

package com.infy;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
* Servlet implementation class TestServlet
*/
public class TestServlet extends HttpServlet {
private static final long serialVersionUID = 1L;

/**
* @see HttpServlet#HttpServlet()
*/
public TestServlet() {
super();
// TODO Auto-generated constructor stub
}

/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// TODO Auto-generated method stub

response.setContentType("text/html");
PrintWriter out=response.getWriter();

out.println(request.getParameter("build"));

}

}

Web.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>Sample</display-name>
<welcome-file-list>
<welcome-file>FrontPage.html</welcome-file>
</welcome-file-list>
<servlet>
<description>Sample Servlet</description>
<display-name>TestServlet</display-name>
<servlet-name>TestServlet</servlet-name>
<servlet-class>com.infy.TestServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>TestServlet</servlet-name>
<url-pattern>/TestServlet</url-pattern>
</servlet-mapping>
</web-app>

我想将构建变量发送到 servlet 类并从 servlet 类打印相同的变量但没有得到任何输出。请帮助我解决这个问题。

最佳答案

您正在将请求作为 GET 方法发送,并且您没有在 url 中传递变量。首先尝试在 servlet 中打印构建值,然后检查它是否进入 servlet。

您应该将 GET 请求发送为:-

url : "/TestServlet?build="+build+",
type : "GET"

,还要注意 URL。在 servlet 站点中创建一个 json 对象。喜欢

JSONObject jsonObj = new JSONObject();

jsonObj.put("build", build);

试试看,然后告诉我。

关于java - 从 JavaScript 到 servlet 的 Ajax 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28810109/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com