java后台传一个list类型的fileName里面有三个字符串 现在需要在html接收用tr td显示出来
时间: 2024-02-20 16:59:56 浏览: 60
Vue 将后台传过来的带html字段的字符串转换为 HTML
5星 · 资源好评率100%
好的,可以使用Java的Spring框架来实现。
首先,在后台将list类型的fileName传给前端:
```
@GetMapping("/")
public String index(Model model) {
List<String> fileName = Arrays.asList("file1.txt", "file2.txt", "file3.txt");
model.addAttribute("fileName", fileName);
return "index";
}
```
然后,在HTML页面中使用Thymeleaf模板语言来遍历list,生成表格:
```
<table>
<tr>
<th>文件名</th>
</tr>
<tr th:each="file : ${fileName}">
<td th:text="${file}"></td>
</tr>
</table>
```
这样就可以将list中的文件名显示在表格中了。
阅读全文