我收到一个value map is not a member of Int错误,我不确定这是什么意思,所以我无法弄清楚。

我有两个页面,scala.html和scala.jade。创建template.scala文件时,会发生此问题。这是造成问题的两个页面的代码:

scala.html
@page.getProduct().getRichContent().size()
@for(i <- page.getProduct().getRichContent().size()) {
<p>@page.getProduct().getRichContent.get(i)</p>
}

scala.jade
p @page.getProduct().getRichContent().size()
| @for (i <- page.getProduct().getRichContent().size()) {
p @page.getProduct().getRichContent.size()
}


引发的错误是:

value map is not a member of int
for(i <- page.getProduct().getRichContent().size()) yield /*74.63*/
                                                ^

最佳答案

for(i <- 0 to page.getProduct().getRichContent().size())


你在找什么

关于java - 循环值的scala不是Int的成员,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12036827/

10-11 09:10