I have a form with an accept button and a reject button. When a user presses the accept button I want the value of accepted in my database to contain the value true. If the user presses reject then I want the value of accepted in my database to contain the value false. The code I have below does not work. Are there any suggestions on how I can get this working properly?
public static void acceptOrRejectResponseForm(Long id,String accept,String reject) {
Response responseForm = Response.findById(id);
if(accept != null && !accept.isEmpty()){
responseForm.accepted = true;
}
else if(reject != null && !reject.isEmpty()){
responseForm.accepted = false;
}
accepted.save();
}
This my html
You should describe the problem better instead of just saying "it doesn't work". Is there a typo in the function (accepted.save();)? What object is accepted?
以上就是Play framework get form value的详细内容,更多请关注web前端其它相关文章!