- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Play Framework 2 (Java) 中处理表单中的错误时,我想呈现一条整体错误消息,警告用户出现问题,例如“Form X 未更新”。一种方法是,除了每个表单字段的错误之外,创建一个全局错误,然后在每个模板上显示它:
Controller :
if(form.hasErrors()) {
form.reject("Form X not updated."); // This creates a global error
}
模板:
@if(form.hasGlobalErrors) {
@someFunctionToPresentErrors(from.globalError.message))
}
但是,将这段相同的代码添加到包含表单的每个 模板违反了DRY。原则。
到目前为止,我最好的解决方案是将错误消息添加到 Http.Context
中,然后在每个模板调用的主模板中拦截错误消息:
Controller :
Http.Context.current().args.put("error", "Form X not updated.");
主模板:
@if(Http.Context.current().args.containsKey("error")){
@someFunctionToPresentErrors(
Http.Context.current().args.get("error").asInstanceOf[String])
}
这样更好,因为它允许我将错误表示内容保存在一个地方,但感觉就像滥用 Http.Context
。请注意 flash(...)
也可用于隐式传递变量并提供与 Http.Context
相同的效果,但调用 时不允许这样做code>badRequest(...)
,因为 flash 应该只用于重定向。无论如何,我认为应该有更好的方法来使用 Play Framework 提供的表单机制来做到这一点。
有这方面的最佳实践吗?
最佳答案
我认为您在这种情况下高估了 DRY 违规 - 实际上我意识到即使是 global 错误也不是那么全局 - 实际上每个表单都有它自己的上下文。无论如何,为了加快工作速度,您可以使用 template tags和 Flash scope
首先在你的Application
Controller 中添加两个通用的公共(public)方法
public static void flashGlobalError() {
flashGlobalError("Oppps... error occurred and I don't know the reason ;(");
}
public static void flashGlobalError(String msg) {
flash("globalError", msg);
}
然后创建一个无参数的tag template即 views/tags/globalErrorByFlash.scala.html
@if(flash.get("globalError")) {
<div style="background: red">
<h4>Error!</h4>
@flash.get("globalError")
</div>
}
并将其包含在您的主
模板中(或仅在选定的 View 中):
<body>
@tags.globalErrorByFlash()
@content
</body>
所以每次当你想显示这个错误时,你可以在你的操作中这样做:
if(form.hasErrors()) {
Application.flashGlobalError();
return badRequest(...);
}
或
if(form.hasErrors()) {
Application.flashGlobalError("This case is quite bit different...");
return badRequest(...);
}
这种方法的最大好处是您不需要依赖 Form.form(T)
,因为您可以在任何地方使用它:
if (1 != 0){
Application.flashGlobalError("Stupido! One isn't equal to Zero!");
}
最后:请记住,flash 作用域中保存的任何值存在 仅针对一个请求,因此它可能会在重定向后消失。 View /模板渲染也被计算在内,因此如果您将错误重定向到新操作,请在 Controller 中转发它,以便重定向的 View 可以看到它。
关于java - 如何在 Play Framework 2 (Java) 中处理表单中的全局错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30355481/
我是一名优秀的程序员,十分优秀!