标签:thymeleaf nbsp 异步 pos get containe 请求 map 模板
1 <div th:fragment="fragmentSegment"> 2 需要异步刷新的div 3 </div>
1 <script type="text/javascript" th:inline="javascript"> 2 // 异步刷新 3 $(function () { 4 $("#comment-container").load(/*[[@{/服务器的请求地址}]]*/""); 5 }); 6 7 </script>
1 <script type="text/javascript" th:inline="javascript"> 2 function postData() { 3 $("#fragmentSegment").load(/*[[@{/服务器请求地址}]]*/"", { 4 // 可携带参数 5 }, function (responseTxt, statusTxt, xhr) { 6 // 回调函数 7 }); 8 } 9 </script>
1 @Controller 2 public class getDataController { 3 4 @PostMapping("/请求url") 5 public String getData() { 6 return "路径/页面名称 :: 当前页面的fragment片段名称"; 7 } 8 }
jQuery结合Thymeleaf模板中的fragment标签实现Ajax异步加载数据
标签:thymeleaf nbsp 异步 pos get containe 请求 map 模板
原文地址:https://www.cnblogs.com/pengsay/p/14752223.html