我有html form
我需要提交给restlet
。看似简单但形式总是空洞的。
这是表格:
<form action="/myrestlet" method="post">
<input type="text" size=50 value=5/>
<input type="text" size=50 value=C:\Temp/>
(and a few other input type texts)
</form>
restlet
:
@Post
public Representation post(Representation representation) {
Form form = getRequest().getResourceRef().getQueryAsForm();
System.out.println("form " + form);
System.out.println("form size " + form.size());
}
我也尝试过这样的表格:
Form form = new Form(representation);
但它始终为[]
,大小为0.
我错过了什么?
编辑:这是我正在使用的解决方法:
String query = getRequest().getEntity().getText();
这包含form
的所有值。我必须解析它们,这很烦人,但它确实起了作用。
答案 0 :(得分:2)
以下是从Restlet服务器资源中提交的HTML表单(内容类型为
application/x-www-form-urlencoded
)获取值的正确方法。这就是你事实上所做的。
public class MyServerResource extends ServerResource {
@Post
public Representation handleForm(Representation entity) {
Form form = new Form(entity);
// The form contains input with names "user" and "password"
String user = form.getFirstValue("user");
String password = form.getFirstValue("password");
(...)
}
}
在您的情况下,实际上并未发送HTML表单,因为您没有为表单定义任何属性name
。我使用了您的HTML代码,发送的数据是空的。您可以使用Chrome开发者工具(Chrome)或Firebug(Firefox)进行检查。
POST /myrestlet HTTP/1.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip, deflate
Accept-Language: fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3
Connection: keep-alive
Host: localhost:8182
Referer: http://localhost:8182/static/test.html
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0
Content-Length: 0
Content-Type: application/x-www-form-urlencoded
您应该为HTML表单使用类似的内容:
<form action="/test" method="post">
<input type="text" name="val1" size="50" value="5"/>
<input type="text" name="val2" size="50" value="C:\Temp"/>
(and a few other input type texts)
<input type="submit" value="send">
</form>
在这种情况下,请求将是:
POST /myrestlet HTTP/1.2
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Encoding: gzip, deflate
Accept-Language: fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3
Connection: keep-alive
Host: localhost:8182
Referer: http://localhost:8182/static/test.html
User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:41.0) Gecko/20100101 Firefox/41.0
Content-Length: 23
Content-Type: application/x-www-form-urlencoded
val1=5&val2=C%3A%5CTemp
希望它可以帮到你, 亨利
答案 1 :(得分:2)
这里有一个更简单的方法来实现它,它直接将Form声明为Java方法的参数:
public class MyServerResource extends ServerResource {
@Post
public Representation handleForm(Form form) {
// The form contains input with names "user" and "password"
String user = form.getFirstValue("user");
String password = form.getFirstValue("password");
(...)
}
}