我有一个简单的表格:
<form action="send_email" method="post">
<input type="text" id="message">
<button type="submit">Send</button>
</form>
它转到我资源中的handlePost
方法。但是Representation entity
始终为null。
@Post
public Representation handlePost(Representation entity) throws ResourceException{
Form form = new Form(entity);
...
return StringRepresentation("test");
}
这是为什么?如何获取表单输入值?
答案 0 :(得分:0)
得到了答案。愚蠢的错误。我必须将name
属性放在元素
<input type="text" id="message" name="message">