作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我能够从数据库中检索数据,但无法添加在数据库表为空时显示警报的条件。
这是我的代码:
index.scala.html
:@(formList: List[Users],form: Form[Users])
@main("history") {
@for(i <- Users.all()) {
@if(i.client.equalsIgnoreCase("potato")) {
<Table>
<tbody>
<tr>
<td><a href="/#"><i >@i.firstname @i.lastname </i></a></td>
<td><a href="/#"><i>@i.phonenumber</i></a></td>
<td><a href="/#"><i>@i.amount</i></a></td>
<td><a href="/#"><i>@i.doneAt</i></a></td>
<td><a href="@routes.Application.edit(i.id)"><i><span class="glyphicon glyphicon-pencil "></span></i></a></td>
<td><a href="@routes.Application.delete(i.id) "><i><span class="glyphicon glyphicon-trash "></span></i></a></td>
</tr>
</tbody>
</table>
}
}
}
public static Result history(long id) {
Form<Users> taskData = form(Users.class);
return ok(history.render(Users.all(), taskData));
}
最佳答案
tl;dr 将 User.all()
移动到 Controller 并通过模板参数传递它,然后添加 if 语句以在列表为空时呈现警报。
您必须添加 if 语句来检查用户列表是否为空,如果为空则显示警报。
@if (Users.all().isEmpty) {
// Show the alert.
}
为了避免两次获取用户,您可以使用defining
函数。
@defining(Users.all()) { users =>
@if (users.isEmpty) {
// Show the alert.
}
@for(user <- users) {
…
}
}
但我强烈建议将用户获取移至 Controller ,并使模板接受用户列表作为参数。这样您就可以保持模板简单。当它被渲染时,它只会呈现数据,而不是潜在地执行繁重的工作,例如从数据库中获取记录。
最终结果可能如下所示。
@(users: List[Users], formList: List[Users],form: Form[Users])
@main("history") {
@if (users.isEmpty) {
<div class="alert">
…
</div>
}
@for(i <- users) {
@if(i.client.equalsIgnoreCase("potato")) {
<Table>
<tbody>
<tr>
<td><a href="/#"><i >@i.firstname @i.lastname </i></a></td>
<td><a href="/#"><i>@i.phonenumber</i></a></td>
<td><a href="/#"><i>@i.amount</i></a></td>
<td><a href="/#"><i>@i.doneAt</i></a></td>
<td><a href="@routes.Application.edit(i.id)"><i><span class="glyphicon glyphicon-pencil "></span></i></a></td>
<td><a href="@routes.Application.delete(i.id) "><i><span class="glyphicon glyphicon-trash "></span></i></a></td>
</tr>
</tbody>
</table>
}
}
}
public static Result history(long id) {
Form<Users> taskData = form(Users.class);
return ok(history.render(Users.all(), Users.MTN(), taskData));
}
关于java - 如何在java play框架中检查数据库表是否为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38794643/
我是一名优秀的程序员,十分优秀!