1

我正在使用 Play 2.0 和 scala 进行一个小项目,并且在显示逻辑方面有些困难。我想检查我传递的参数在我的视图引擎中是否为空。

我试过了:

@if(pmem.isEmpty()) {
 there are no past members who won in this branch
} else {
 <table>
etcc...
 <table>
}

但它没有用,给了我一个

布尔不带参数错误

我也试过

@if(pmem == null) {
 there are no past members who won in this branch
} else {
    } else {
     <table>
    etcc...
     <table>
    }

它没有用,也许我错过了什么?或者我可能做错了。我正在使用 Scala/Play 2.0 框架。

4

1 回答 1

3
@if(pmem.isEmpty) {
 there are no past members who won in this branch
} else {
 <table>
etcc...
 <table>
}

试过并给了我答案:)

于 2012-09-27T08:17:48.373 回答