我有两个arraylists,Tweets: ArrayList[TweetObject]
和
cluster_sizes: ArrayList[Integer]
我想要做的就是这个,但我找不到办法,我不想弄乱TweetObject类来添加cluster_sizes数组中的内容。
@for((tweet,index) <- Tweets.zipWithIndex){
@form(action = routes.Application.clean_and_move_on()){
<td>@index</td>
<td>@cluster_sizes[@index]</td>
<td>@tweet.owner</td>
有没有办法像@cluster_sizes[@index]
一样访问此列表?
答案 0 :(得分:1)
'@'字符表示代码块的开头,您不必连续两次使用它。此外,您必须以scala样式获取元素,因此:
<td>@cluster_sizes(index)</td>