我有一个主页和一个控制器。在主页中,我有一个文本区域,用户可以在其中输入文本,并且一旦按下“推文”按钮,它需要将其作为帖子发送到控制器。
主页:
<textarea action = "twit" method = "post" class="tweetbox" ></textarea>
<div class="row button">
<button class="btn btn-twitter" value =" add2" >
<span class="glyphicon glyphicon-pencil"/>Tweet
</button>
这是控制器方:
protected void doPost(HttpServletRequest request,
HttpServletResponse response)
throws ServletException, IOException {
String url = "/home.jsp";
String action = request.getParameter("twit");
System.out.print(action);
if(action.equals("add2"))
{
String email = request.getParameter("email");
String text = request.getParameter("text");
Twit twit = new Twit(email,text);