gpt4 book ai didi

java - 将 Javascript 变量传递给 servlet doGet 方法

转载 作者:太空宇宙 更新时间:2023-11-04 14:41:32 26 4
gpt4 key购买 nike

我有一个 JavaScript 函数来检索用户工作站,就像这里的那样。 How can I read the client's machine/computer name from the browser?

我的问题是,如何将计算机名(函数的结果)传递给 servlet doGet() 方法?

目前我调用servlet的代码(片段)如下:

    <html>
<head> .... <script> load my javascript file here </script></head>
<%
if(session.getAttribute("Login") == null){
//I want to pass the computer name here
response.sendRedirect("../LOGME");
} else {
//draw page body
} %>
</html>

最佳答案

让客户端重定向。

<%
if(session.getAttribute("Login") == null){ %>
<script>
location.href = "../LOGME?name=" + yourValue;
</script>
<% return; // you should check the return ...
} else {
//draw page body
} %>

但在我的机器上不起作用。我使用的是 Linux,所以没有... ActiveX。

关于java - 将 Javascript 变量传递给 servlet doGet 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24871661/

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