- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经为我的模型“Elk”创建了一个编辑 View ,但是当我单击“提交”时,我只得到“null”。
在“editElk”中,我使用数据库中的数据预填充表单。该数据在 View 中正确呈现。当我点击“提交”时发生错误。我评论了该行,给我“没有值(value)”。我已经遵循了 computer-database-jpa 示例,但我只是无法理解为什么我的表单返回“无值”。
这是我的 Controller :
import play.data.*;
import static play.data.Form.*;
@Transactional(readOnly = true)
public static Result editElk(Long id) {
Form<Elk> editElkForm = form(Elk.class).fill(Elk.findById(id));
return ok(views.html.tableio.editelk.render("Edit Elg", editElkForm));
}
@Transactional
public static Result submitEditedElk() {
Form<Elk> submittedForm = form(Elk.class).bindFromRequest();
submittedForm.get().toTableData(); // Gives: IllegalStateException: No value]
if (submittedForm.hasErrors()) {
return ok(views.html.tableio.editelk.render("Edit Elg - Error",
submittedForm));
} else {
submittedForm.get().update(submittedForm.get().getId());
return TODO;
}
}
这是我的 editElk View :
@(title: String, elkForm: Form[Elk])
@import helper._
@main(title){
<h5>Edit</h5>
@form(action = routes.TableIO.submitEditedElk()) {
@inputText(elkForm("area"))
@inputText(elkForm("sex"))
@inputDate(elkForm("date"))
@inputText(elkForm("weigth"))
@inputText(elkForm("veal"))
@inputText(elkForm("antlers"))
@inputText(elkForm("age"))
@inputText(elkForm("twin"))
@inputText(elkForm("sumTick"))
@inputText(elkForm("sumLice"))
<button type="submit">Save</button>
}
}
最后是我的路线文件:
GET /editelk/:elkid controllers.TableIO.editElk()
POST /submitEditedElk controllers.TableIO.submitEditedElk()
编辑根据要求,添加了 Elk 类。
@Entity
public class Elk {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Required
private Date date;
@Required
private int weight;
@Required
private double age;
@Required
private int antlers;
@Required
private int veal;
@Required
private int twin;
@Required
@ManyToOne
private Tick sumTick;
@Required
@ManyToOne
private DeerLice sumLice;
@Required
@ManyToOne
private Sex sex;
@Required
@ManyToOne
private Area area;
@Required
@ManyToOne
private HuntingField huntingfield;
public static Elk findById(Long id) {
return JPA.em().find(Elk.class, id);
}
@Transactional
public void save() {
this.sumTick = Tick.findById(sumTick.id);
this.sumLice = DeerLice.findById(sumLice.id);
this.sex = Sex.findById(sex.id);
JPA.em().persist(this);
}
}
我省略了 getter 和 setter。
最佳答案
您的第一个问题可能是您在体重
输入字段中的拼写错误:
@inputText(elkForm("weigth")) // Should be @inputText(elkForm("weight"))
由于此拼写错误,当您提交表单时,HTTP POST 请求正文中不会有 weight
键。因此,当您在以下语句中将 POST 数据绑定(bind)到表单对象时:
Form<Elk> submittedForm = form(Elk.class).bindFromRequest();
包装的 Elk
的 weight
属性将为零。因此,您的表单将被视为无效,因为重量
是必需的值。
To clarify, the
IllegalStateException
you're getting isn't because there's a bug in your view or model code. It is because you're trying to unwrap a form object that contains validation errors. As the documentation and samples illustrate, you should only call theget()
method on a form after you've called.hasErrors()
and it has returnedfalse
.
更正此拼写错误后,我可能会看看为您的非原始字段发送的内容(sumTick
、sumLice
、sex
,区域
,狩猎场
)。我将继续假设模型类中的关联类型是枚举。如果是这种情况,您应该检查提交的值是否是相应枚举值的名称(在这种情况下,绑定(bind)将生成有效的表单)。
你的日期
字段引起了我的注意。如果您以 yyyy-MM-dd
格式提交日期,请将以下注释添加到模型类的 date
属性中。
@Required
@Formats.DateTime(pattern="yyyy-MM-dd")
private Date date;
这是 sample projects 中采取的方法。使用此注释,Play 将使用 POST 提交中的日期字符串填充表单对象中的日期字段。
关于java - Play Framework : Bind from request returns 'null' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21858952/
询问 unrelated question我有这样的代码: public boolean equals(Object obj) { if (this == obj) retur
在我之前的一个问题中 js: Multiple return in Ternary Operator我询问了有关使用三元运算符返回多个参数的问题。但是现在参数IsActveUser boolean(t
假设我有一个带有 return 的 if 语句。从效率的角度来看,我应该使用 if(A > B): return A+1 return A-1 或 if(A > B): return
例如考虑以下代码: int main(int argc,char *argv[]) { int *p,*q; p = (int *)malloc(sizeof(int)*10); q
PyCharm 对这段代码发出警告,说最后一个返回是不可访问的: def foo(): with open(...): return 1 return 0 如果 ope
我想实现这样的目标: 如果在返回 Json 的方法中抛出异常,则返回 new Json(new { success = false, error = "unknown"}); 但如果方法返回 View
它是多余的,但我正在学习 JS,我想知道它是如何工作的。 直接从模块返回函数 let func1 = function () { let test = function () {
我不明白我应该使用什么。我有两页 - intro.jsp(1) 和 booksList.jsp(2)。我为每一页创建了一个 Controller 类。第一页有打开第二页的按钮:
我最近在 Joomla 组件(Kunena,更准确地说是 Kunena)中看到这段代码,那么使用 $this->return VS 简单的 return 语句有什么区别. 我已经用谷歌搜索了代码,但没
我的类实现了 IEnumerable。并且可以编译这两种方式来编写 GetEnumerator 方法: public IEnumerator GetEnumerator() { yield r
我只是在编码,我想到了一个简单的想法(显然是问题),如果我有一个像这样的函数: int fun1(int p){ return(p); } 我有一个这样的函数: int fun1(int p){
这个问题在这里已经有了答案: What does the comma operator do in JavaScript? (5 个答案) 关闭 9 年前。 function makeArray
假设我写了一个 for 循环,它将输出所有数字 1 到 x: x=4 for number in xrange(1,x+1): print number, #Output: 1 2 3 4 现
我最近在这个 Apache Axis tutorial example. 中看到了下面的一段代码 int main() { int status = AXIS2_SUCCESS; ax
function a(){ return{ bb:"a" } } and function a(){ return { bb:"a" } } 这两个代码有什么区别吗,如果有请
function a() { return 1; } function b() { return(1); } 我在 Chrome 的控制台中测试了上面的代码,都返回了 1。 function c()
考虑这三个函数: def my_func1(): print "Hello World" return None def my_func2(): print "Hello World"
这可能是一个愚蠢的问题,但我正在努力,如果有一种简明的方法来测试函数的返回结果,如果它不满足条件,则返回该值(即,传递它)。。现在来回答一个可能的问题,是的,我正在寻找的类似于例外提供的东西。然而,作
我正在测试一个函数,并尝试使用 return 来做什么,并在 PowerShell 5.1 和 PwSh 7.1 中偶然发现了一个奇怪的问题,即 return cmdlet似乎不适合在团体中工作: P
这个问题已经有答案了: Return in generator together with yield (2 个回答) Why can't I use yield with return? (5 个回
我是一名优秀的程序员,十分优秀!