gpt4 book ai didi

java - html表单发布数据

转载 作者:行者123 更新时间:2023-12-02 00:36:34 25 4
gpt4 key购买 nike

我用 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>

最佳答案

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

你有 -

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

你需要 -

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

关于java - html表单发布数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7642583/

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