最近在使用thymeleaf時,遇到一個問題,好比要跳轉的地址是localhost:8080/pro/a/b,跳轉後發現變成了html
localhost:8080/pro/path/a/b,這樣地址中多了個path,顯然是錯誤的。其實在跳轉地址前加 / 和不加 / 是不同的。java
頁面跳轉地址前加 /,意味着跳轉到項目的根目錄,不加 / ,意味着從當前頁地址跳轉。ajax
解決的辦法也很簡單,只要獲取上下文路徑就能夠了。因爲使用的thymeleaf下面jsp一筆帶過。jsp
下面是各類跳轉的方式。async
jsp獲取上下文路徑:下面只是jsp獲取上下文路徑的一種方式post
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>url
<c:set var="basePath"spa
value="${pageContext.request.scheme}://${pageContext.request.serverName}: ${pageContext.request.serverPort}${pageContext.request.contextPath}" />code
使用示例:<html><a href="${basePath}/jsp/index.jsp"></a></html>orm
在thymeleaf中使用ajax提交,url:[[@{/index/ajaxtest}]]這樣就能夠。
$.ajax({
async:true,
url:"[[@{/findById/}]]"+id,
type:"POST",
success:function(data){
alert("操做成功!");
}
})
<form class="form-group" th:action="@{/login}" method="post"> <div class="form-group"> <label>用戶名</label> <input class="form-control" name="userName" type="text" placeholder=""> </div> <div class="form-group"> <label>密碼</label> <input class="form-control" name="password" type="password" placeholder=""> </div> <div class="text-right"> <button class="btn btn-primary" type="submit">登陸</button> <button class="btn btn-danger" data-dismiss="modal">取消</button> </div> </form>
<a th:href="@{'searchInfo/'+${info.id}}">查看</a>
這樣使用thymeleaf會自動獲取上下文參數。