我是玩框架的新手,我有一个文件列表,我想添加复选框,以便我可以在单击删除按钮时删除所有选中的文件,我正在使用 scala 语言显示文件列表,确实需要帮助
@form(action = routes.Application.delete, 'enctype -> "multipart/form-data") {
@for(order1 <- listfiles) {
@if(order1.isDirectory()) { }
else {
<input type="checkbox" name="@order1">@order1.getName()
}
}
<input type="submit" name="delete">
}
其中@order1.getName() 是文件的名称