java - 将 Playframework 与 Java 结合使用时的父/子表单

标签 java playframework

我有一个“问题”实体,它有一个“答案”,其中有一个“替代方案”列表,如下所示:

public class Question extends BaseEntity {

    private String text;

    private String sourceCode;

    private String complement;

    private Answer answer;
}
<小时/>
public class Answer extends BaseEntity{
    private List<Alternative> alternatives;
}
<小时/>

我想制作一个表单供用户填写问题列表。我读了很多 Material 和问题,但我不知道如何用表格准确地完成我想要的事情。我知道我可以使用 DynamicForms 以其他方式做到这一点,这不是我想要的。我的想法是可以这样完成:

@(message: String, form: play.data.Form[Question])
@main("cadastrar questão") {

    <script src="@routes.Assets.at("javascripts/index.js")"></script>
    <div class="page-header">
        <h1>@message</h1>
    </div>
    <body>
        <style>
        .top-buffer { margin-top:12px ; }
        </style>
        <div class="container.fluid form-group">
        @helper.form(routes.Application.submit()) {

            <div class="row top-buffer">
                <label for="text">Enunciado:</label>
                <textarea id="text" name="text" class="form-control col-md-6" placeholder="Enunciado da questão" rows="5" value="@form("text").value()"></textarea>
            </div>

    ...    
            <div class="row top-buffer">
                <label for="complement">Corretas:</label>
                <input type="text" name="correct" class="form-control col-md-6" value="@form("complement.answer.alternatives[0]").value()">
            </div>

            <div class="row top-buffer">
                <div class="row top-buffer">
                    <input type="submit" class="btn btn-primary col-md-1" value="submit">
                </div>
            </div>
        }
        </div>
    </body>


}

但是当我尝试使用 Answer 对象并且它是“替代品”时,一个大的 NullPointerException 在我脸上爆炸:

        final Form<Question> questionForm = f.bindFromRequest();
        final Question question = questionForm.get();
        System.out.println(question);
        System.out.println(question.getText());
        System.out.println(question.getSourceCode());
        System.out.println(question.getComplement());

//Nullpointer here:
        final List<Alternative> alternatives = 
question.getAnswer().getAlternatives();

        alternatives.forEach(p -> System.out.println(p));

我错过了更多有关它和其他相关内容的文档和示例。即使官方网站也没有提供广泛的示例。尤其是在处理 Java 时。这让人觉得该框架正在变得过时或被其他技术取代?

我使用 Play 2.4.6 版本。

最佳答案

这已记录在案here ,特别是如何 handle repeated values 。当然,文档总是可以改进的。请打开an issue提出这个问题。另外,这并不代表该框架正在过时或被其他框架取代(事实上,Play 2.5 即将发布,社区正在不断壮大)。

无论如何,这里有一个关于如何制作您所描述的父/子表单的综合示例。请记住,我并不关心表单的样式。

您的域层次结构:

<强> models/Question.java :

package models;

public class Question {
    public String text;
    public String sourceCode;
    public String complement;
    public Answer answer;
}

<强> models/Answer.java :

package models;

import java.util.List;

public class Answer {
    public List<Alternative> alternatives;
}

<强> models/Alternative.java :

package models;

public class Alternative {
    public boolean correct;
    public String statement;
}

Controller 和路由:

现在,我执行以下操作,仅返回 Question对象及其子对象作为 JSON(因为我们只对如何提交此类数据感兴趣):

package controllers;

import models.Question;
import play.data.Form;
import play.libs.Json;
import play.mvc.*;

import views.html.*;

import static play.data.Form.form;

public class Application extends Controller {

    public Result index() {
        Form<Question> form = form(Question.class);
        return ok(index.render(form));
    }

    public Result post() {
        Form<Question> form = form(Question.class).bindFromRequest();
        Question question = form.get();
        return ok(Json.toJson(question));
    }
}

通知index行动我如何声明 Form<Question>并将其作为参数传递给 View 。您可以看到more information about how to define a form at the docs 。让我们看看我们的路线:

GET     /                  controllers.Application.index()
POST    /save              controllers.Application.post()

表单 View :

最后,我们需要创建用于填充和提交数据的表单:

@(questionForm: Form[Question])

@main("Welcome to Play") {
  @helper.form(action = routes.Application.post()) {
    <h2>Question:</h2>
    @helper.inputText(questionForm("text"))
    @helper.inputText(questionForm("sourceCode"))
    @helper.inputText(questionForm("complement"))
    <h3>Answers:</h3>
    @helper.repeat(questionForm("answer.alternatives"), min = 2) { alternative =>
      @helper.checkbox(alternative("correct"))
      @helper.inputText(alternative("statement"))
    }
    <button type="submit">Save</button>
  }
}

基本上该表单是使用 form helpers 创建的它将处理表单工作方式的大部分方面(例如显示每个实例的错误)。特别关注@helper.repeat tag:它将创建以下标记(省略不相关的部分):

<h3>Answers:</h3>

<label>answer.alternatives.0.correct</label>
<input type="checkbox" name="answer.alternatives[0].correct" value=""/>

<label>answer.alternatives.0.statement</label>
<input type="text" name="answer.alternatives[0].statement" value=""/>



<label>answer.alternatives.1.correct</label>
<input type="checkbox" name="answer.alternatives[1].correct" value="" />

<label>answer.alternatives.1.statement</label>
<input type="text" name="answer.alternatives[1].statement" value=""/>

请注意如何命名参数来表示订单以及 alternative 的不同字段的相关性。对象。

提交表单:

最后,填写并提交表单后,您将得到以下 JSON:

{
  "text": "Question text",
  "sourceCode": "Question source",
  "complement": "Question complement",
  "answer": {
    "alternatives": [
      {
        "correct": true,
        "statement": "Statement 1"
      },
      {
        "correct": false,
        "statement": "Statement 2"
      }
    ]
  }
}

关于java - 将 Playframework 与 Java 结合使用时的父/子表单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35664642/

相关文章:

java - Play Framework Global.java 中的多个过滤器

java - 为 Scanner 方法编写模式

java - Keycloak 使用自定义协议(protocol)映射器添加来自数据库/外部源的额外声明

java - 从 ArrayList 获取坐标(x,y)的快速方法?

java - Play Framework 2.1 和 Ebean : model Finder returns no data

scala - 玩! Framework 2.0:使用其他字段验证表单中的字段

java - Injector.getInstance() 是否总是调用构造函数?

java - 违反完整性约束

javascript - javascript 和 java 操作文件中的字符串列表值不同

java - 查找字符串中的所有回文