我有一个简单的表格:
<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");
}
为什么是这样?如何获取表单输入值?