无法向服务器发送 POST 请求

Can't send POST request to server

出于学习目的,我正在 Java 中编写一个基本的线程池网络服务器;使用 HttpServer 和 HttpHandler classes.

服务器 class 的 运行 方法如下:

@Override
    public void run() {
        try {
            executor = Executors.newFixedThreadPool(10);
            httpServer = HttpServer.create(new InetSocketAddress(port), 0); 
            httpServer.createContext("/start", new StartHandler());
            httpServer.createContext("/stop", new StopHandler());
            httpServer.setExecutor(executor);
            httpServer.start();
        } catch (Throwable t) {
        }
    }

实现 HttpHandler 的 StartHandler class 在 Web 浏览器中键入 http://localhost:8080/start 时提供一个 html 页面。 html 页面是:

<!DOCTYPE html>
<html>
<head>
    <meta charset="ISO-8859-1">
    <title>Thread Pooled Server Start</title>
    <script type="text/javascript">
        function btnClicked() {
            var http = new XMLHttpRequest();
            var url = "http://localhost:8080//stop";
            var params = "abc=def&ghi=jkl";
            http.open("POST", url, true);

            //Send the proper header information along with the request
            http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
            http.setRequestHeader("Content-length", params.length);
            http.setRequestHeader("Connection", "close");

            http.onreadystatechange = function() {//Call a function when the state changes.
                if(http.readyState == 4 && http.status == 200) {
                    alert(http.responseText);
                }
            }
            http.send(params);
        }
    </script>
</head>
<body>
    <button type="button" onclick="btnClicked()">Stop Server</button>
</body>
</html>

基本上,上面的 html 文件包含一个按钮,单击该按钮时应该向 URL http://localhost:8080/stop 上的服务器发送 POST 请求(上面 StopHandler 的上下文)。

StopHandler class 也实现了 HttpHandler,但我没有看到在单击按钮时调用 StopHandler 的 handle() 函数(我在其中有一个 System.out.println '执行)。据我了解,由于上面 html 页面的按钮单击向设置为 StopHandler 的上下文 http://localhost:8080/stop 发送了 POST 请求,难道不应该执行它的 handle() 函数吗?当我尝试通过网络浏览器执行 http://localhost:8080/stop 时,调用了 StopHandler 的 handle() 函数。

感谢您的宝贵时间。

这更像是一种解决方法,但我能够通过使用表单并绕过 XmlHttpRequest 来正确发送 POST 请求。尽管我仍然相信 XmlHttpRequest 应该有效。

<form action="http://localhost:8080/stop" method="post">
        <input type="submit" value="Stop Server">
</form>