我是网络服务和 html/javascript 的新手。我用 Java 编写了一个 REST Web 服务。它接受来自 html 表单的用户名并再次将其返回到同一个 html 页面。我使用 alert() 函数调用显示。
我的网络服务代码是
@Path("/hello")
public class Hello {
@GET
@Path("hello/{username}")
@Produces(MediaType.TEXT_HTML)
public String ldap(@PathParam("username") String username)
{
return username;
}
}
我的jsp文件是first.jsp(只粘贴了选定的代码,所以没有关于html、body标签的错误)
<script type="text/javascript">
var xmlhttp;
function callservice()
{
alert("I am in javascript");
var user = document.getElementById("uid");
xmlhttp = new XMLHttpRequest();
var url = "http://localhost:8080/de.vogella.workspace.first/rest/hello/" + user.value;
xmlhttp.open('GET', url, true);
alert("after url");
xmlhttp.send(null);
alert("after send");
xmlhttp.onreadystatechange = function(){
if (xmlhttp.readyState == 4 && xmlhttp.status == 200)
{
alert("In functn");
alert(xmlhttp.responseText);
}
}
}
</script>
<form style="margin-left:300px" id="f1" method="GET" onsubmit="callservice()" >
<fieldset style="margin: 50px">
<legend>Login</legend>
<p>
User name: <input type="text" id="uid" name="username"><br>
<p>
<input type="submit" value="Submit">
<p id="qwe"> This HTML</p>
</fieldset>
</form>
从 first.jsp 文件中,我调用了 Web 服务。我在没有任何参数的情况下做同样的事情,我从 Web 服务返回一些硬编码的值,然后它就可以工作了。但是我需要传递参数,因为我想对用户进行身份验证。
我认为我在参数传递中做错了什么。
当我单击提交按钮时,我可以在浏览器中看到 url
http://xxx.xxx.xxx.x:8080/de.vogella.workspace.first/first.jsp?username=john
当我将网络服务作为独立测试时,它看起来像
http://xxx.xxx.xxx.x:8080/de.vogella.workspace.first/rest/hello
任何人都可以帮我解决它。
谢谢你。