0

我有一个简单的表格:

<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");
    }

为什么是这样?如何获取表单输入值?

4

1 回答 1

0

得到了答案。愚蠢的错误。我必须将name属性放在元素中

<input type="text" id="message" name="message">
于 2012-05-21T21:25:05.760 回答