0

エラーが発生しましたvalue map is not a member of Intが、それが何を意味するのかわからないため、理解できません。

scala.html と scala.jade の 2 つのページがあります。この問題は、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*/
                                                ^
4

1 に答える 1

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

あなたが探しているものです。

于 2012-08-20T11:35:00.397 に答える