gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 03:02:16 25 4
gpt4 key购买 nike

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

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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com