使用地图在 thymeleaf 中设置值
Setting values in thymeleaf using a map
I 从地图生成一个复选框列表。现在如何设置键的值 (false / true),现在我可以在 UserConfig 中下载它,这样我就可以在项目的其余部分使用这个值。
我的看法:
<body>
<main>
<form th:action="@{/file/uploadFile}" enctype="multipart/form-data" method="POST"/>
<fieldset>
<legend>Generate Report</legend>
<label> Upload File
<input name="file" type="file" required/>
<input type="submit" value="Upload"/>
</label>
<label th:each="item : ${userConfig.isEnableMap}">
<input type="checkbox" id="" th:text="${item.key}" th:value="${item.value}"/>
</label>
</form>
</fieldset>
</main>
</body>
我的 class 用户配置:
@Component
public class UserConfig {
private Map<String, Boolean> isEnableMap = new HashMap<>();
public UserConfig() {
isEnableMap.put(EnableProcess.MONTHLY_TIME_UPDATE.getName(), false);
isEnableMap.put(EnableProcess.SUM.getName(), false);
isEnableMap.put(EnableProcess.HIDE_COLUMNS.getName(), true);
}
public UserConfig(Map<String, Boolean> isEnableMap) {
this.isEnableMap = isEnableMap;
}
public Map<String, Boolean> getIsEnableMap() {
return isEnableMap;
}
public void setIsEnableMap(Map<String, Boolean> isEnableMap) {
this.isEnableMap = isEnableMap;
}
public enum EnableProcess {
MONTHLY_TIME_UPDATE("Monthly time update"), SUM("Sum"), HIDE_COLUMNS("Hide columns");
private final String name;
EnableProcess(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
控制器
@PostMapping(value = "/uploadFile", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE)
public ResponseEntity<Resource> uploadFile(@RequestParam("file") MultipartFile file, @ModelAttribute("userConfig") UserConfig userConfig) {
String fileName = file.getOriginalFilename();
if (getExtension(fileName).equals("XLSX") || getExtension(fileName).equals("XLS")) {
XSSFWorkbook workbook = reportService.processFile(file);
reportService.writeWorkbook(workbook);
}
Resource resource = new ClassPathResource("temp/" + reportConst.getTempFileName());
HttpHeaders headers = new HttpHeaders();
headers.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"" + reportConst.getTempFileName() + "\"");
return new ResponseEntity<>(resource, headers, HttpStatus.OK);
}
我不使用数据库。它只需要保存值以生成报告
有了 Preprocessing(如果我没猜错的话),我们可以尝试类似的方法:
<input th:field="*{userConfig.isEnableMap['__${item.key}__']}" ... />
...假设其余工作正常。 ;)
I 从地图生成一个复选框列表。现在如何设置键的值 (false / true),现在我可以在 UserConfig 中下载它,这样我就可以在项目的其余部分使用这个值。
我的看法:
<body>
<main>
<form th:action="@{/file/uploadFile}" enctype="multipart/form-data" method="POST"/>
<fieldset>
<legend>Generate Report</legend>
<label> Upload File
<input name="file" type="file" required/>
<input type="submit" value="Upload"/>
</label>
<label th:each="item : ${userConfig.isEnableMap}">
<input type="checkbox" id="" th:text="${item.key}" th:value="${item.value}"/>
</label>
</form>
</fieldset>
</main>
</body>
我的 class 用户配置:
@Component
public class UserConfig {
private Map<String, Boolean> isEnableMap = new HashMap<>();
public UserConfig() {
isEnableMap.put(EnableProcess.MONTHLY_TIME_UPDATE.getName(), false);
isEnableMap.put(EnableProcess.SUM.getName(), false);
isEnableMap.put(EnableProcess.HIDE_COLUMNS.getName(), true);
}
public UserConfig(Map<String, Boolean> isEnableMap) {
this.isEnableMap = isEnableMap;
}
public Map<String, Boolean> getIsEnableMap() {
return isEnableMap;
}
public void setIsEnableMap(Map<String, Boolean> isEnableMap) {
this.isEnableMap = isEnableMap;
}
public enum EnableProcess {
MONTHLY_TIME_UPDATE("Monthly time update"), SUM("Sum"), HIDE_COLUMNS("Hide columns");
private final String name;
EnableProcess(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
控制器
@PostMapping(value = "/uploadFile", produces = MediaType.APPLICATION_OCTET_STREAM_VALUE)
public ResponseEntity<Resource> uploadFile(@RequestParam("file") MultipartFile file, @ModelAttribute("userConfig") UserConfig userConfig) {
String fileName = file.getOriginalFilename();
if (getExtension(fileName).equals("XLSX") || getExtension(fileName).equals("XLS")) {
XSSFWorkbook workbook = reportService.processFile(file);
reportService.writeWorkbook(workbook);
}
Resource resource = new ClassPathResource("temp/" + reportConst.getTempFileName());
HttpHeaders headers = new HttpHeaders();
headers.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=\"" + reportConst.getTempFileName() + "\"");
return new ResponseEntity<>(resource, headers, HttpStatus.OK);
}
我不使用数据库。它只需要保存值以生成报告
有了 Preprocessing(如果我没猜错的话),我们可以尝试类似的方法:
<input th:field="*{userConfig.isEnableMap['__${item.key}__']}" ... />
...假设其余工作正常。 ;)