html表单发布数据

发布于 2024-12-08 12:58:36 字数 972 浏览 0 评论 0 原文

我用 HTML 设计了一个表单,想要将数据提交到我制作的一个非常简单的 java Web 服务器。在表单中,我将操作指定为“post”,因此我假设这就是它进入 java Web 服务器的方式,但当我在调试器中查看它时,“GET”被卡在 URI 前面。如果我尝试在网络服务器关闭的情况下提交数据,我会收到“找不到您要查找的页面”消息,但我会看到所有数据都滞留在 URL 中。我不确定这是否正常。

有人可以看一下我的 HTML 页面并让我知道我是否做错了什么吗?

<head>
    <title>FormTest</title>
</head>

<body>
    <form action="http://localhost:1088/mailer.html method="post">
        <div>
            <label>
                First Name: <input type="text" name="firstname" size="30" />
            </label>
            <label>
                Last Name: <input type="text" name="firstname" size="30" />
            </label>

            </br>

            There's a bunch more text boxes and such here, but you get the idea. 

            <input type="submit" text="Submit!" name="submitBtn" />

        </div>

    </form>

</body>

I designed a form in HTML and want to submit the data to a very simple java web server that I made. In the form, I specify the action as "post" so I'd assume that's how it should come into the java web server but "GET" is stuck in front of the URI when I look at it in the debugger. If I were to try and submit the data with the web server turned off, I'd get the "Can't find the page you're looking for message" but I'd see all the data stuck up in the URL. I'm not sure if that's normal.

Can someone just have a look at my HTML page and let me know if I might be doing anything wrong?

<head>
    <title>FormTest</title>
</head>

<body>
    <form action="http://localhost:1088/mailer.html method="post">
        <div>
            <label>
                First Name: <input type="text" name="firstname" size="30" />
            </label>
            <label>
                Last Name: <input type="text" name="firstname" size="30" />
            </label>

            </br>

            There's a bunch more text boxes and such here, but you get the idea. 

            <input type="submit" text="Submit!" name="submitBtn" />

        </div>

    </form>

</body>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陪你搞怪i 2024-12-15 12:58:36

您需要用引号关闭表单标签属性:

您有 -

 

你需要——

 

You need to close off the form tag attributes with a quotation mark:

You have -

    <form action="http://localhost:1088/mailer.html method="post">

You need -

    <form action="http://localhost:1088/mailer.html" method="post">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文