thymeleaf實現前後端數據交換的示例詳解
Thymeleaf 是一款用於渲染 XML/XHTML/HTML5 內容的模板引擎。它與 JSP,Velocity,FreeMaker 等模板引擎類似,也可以輕易地與 Spring MVC 等 Web 框架集成。與其它模板引擎相比,Thymeleaf 最大的特點是,即使不啟動 Web 應用,也可以直接在瀏覽器中打開並正確顯示模板頁面 。
1.前端傳數據後端接收:
用戶在登錄界面輸入用戶名和密碼傳給後端controller,由後端判斷是否正確!
在html界面中要傳遞的數據name命名,通過表單的提交按鈕會傳遞給響應的controller,在controller將需要的name接收!
<input type="text" name="username" class="form-control" th:placeholder="#{login.username}"> <input type="password" name="password" class="form-control" th:placeholder="#{login.password}">
在controller中使用@RequestParam來對應接收前端要傳遞的參數,此時參數名嚴格對應html界面中提交的數據name名稱!
@RequestMapping("/user/login") public String Login(@RequestParam("username") String username, @RequestParam("password") String password, Model md){ }
此時後端就實現接收前端傳遞的數據
2.後端對數據判斷後返回信息給前端:
controller通過上述參數會接受到html,傳遞的數據,對數據進行判斷。並且通過msg將信息傳遞回去。
if(!StringUtils.isEmpty(username)&& "123123".equals(password)){ return "redirect:/main.html"; }else{ md.addAttribute("msg","用戶名或者密碼錯誤!"); return "index"; }
html頁面使用thymeleaf引擎接收並且顯示數據在界面!
<p style="color: red" th:text="${msg}" th:if="${not #strings.isEmpty(msg)}"></p>
完整的兩個代碼塊如下:
<form class="form-signin" th:action="@{user/login}"> <img class="mb-4" th:src="@{/img/bootstrap-solid.svg}" alt="" width="72" height="72"> <h1 class="h3 mb-3 font-weight-normal" th:text="#{login.tip}">Please sign in</h1> <p style="color: red" th:text="${msg}" th:if="${not #strings.isEmpty(msg)}"></p> <input type="text" name="username" class="form-control" th:placeholder="#{login.username}" required="" autofocus="" > <input type="password" name="password" class="form-control" th:placeholder="#{login.password}" required="" > <div class="checkbox mb-3"> <label> <input type="checkbox" value="remember-me" th:text="#{login.remember}"> </label> </div> <button class="btn btn-lg btn-primary btn-block" type="submit" th:text="#{login.btn}">sign in</button> <p class="mt-5 mb-3 text-muted">© 2022-7-8//21:41</p> <a class="btn btn-sm" th:href="@{/index.html(l='zh_CN')}" rel="external nofollow" >中文</a> <a class="btn btn-sm" th:href="@{/index.html(l='en_US')}" rel="external nofollow" >English</a> </form>
java
@Controller public class LoginController { @RequestMapping("/user/login") public String Login(@RequestParam("username") String username, @RequestParam("password") String password, Model md){ if(!StringUtils.isEmpty(username)&& "123123".equals(password)){ return "redirect:/main.html"; }else{ md.addAttribute("msg","用戶名或者密碼錯誤!"); return "index"; } } }
到此這篇關於thymeleaf實現前後端數據交換的文章就介紹到這瞭,更多相關thymeleaf數據交換內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Spring boot Thymeleaf配置國際化頁面詳解
- Flask登錄註冊項目的簡單實現
- SpringMVC RESTFul及REST架構風格介紹
- thymeleaf中前後端數據交互方法匯總
- SpringBoot+MyBatis實現登錄案例