restlet post方法参数始终为null

时间:2012-05-20 20:16:00

标签: rest restlet

我有一个简单的表格:

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

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

1 个答案:

答案 0 :(得分:0)

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

<input type="text" id="message" name="message">