Spring|Spring boot 使用thymeleaf实现局部刷新
【Spring|Spring boot 使用thymeleaf实现局部刷新】html:
问题类型
报修时间
地址
问题描述
js:
function getRepair() {
var url = "/getRepair";
$("#recording").load(url);
}
后台java:
@Controller
public class GetController {
@Autowired
private RepairRepositories repairRepositories;
@RequestMapping({"/getRepair"})
public String getRepair(ModelMap modelMap, HttpSession session) {
Integer userId = (Integer) session.getAttribute("user_id");
List repairs = repairRepositories.getRepair(userId);
modelMap.addAttribute("repair",repairs);
return "payCenter::recording";
}
}
注意:注解用@Controller注解,不能使用@ResponseBody注解或者@RestController注解
否则页面上显示的是
payCenter::recording
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- Activiti(一)SpringBoot2集成Activiti6
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程