エラーが発生しました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*/
^