2012-09-26 48 views
1

我正在使用Play 2.0和Scala進行一個小項目,並且在顯示邏輯中有點困難。我想檢查我的視圖引擎中傳遞的參數是否爲空。播放2.0 - 檢查傳遞的參數是否爲空

我想:

@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框架。

+0

'@if(pmem.isEmpty){'給了我什麼是「PMEM」類型的答案 – Krayons

+0

變量是它的集合?您可能會嘗試調試並獲取此變量的值。 –

回答

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

嘗試和給我的答案:)