Java教程

Thymeleaf获取应用程序上下文,拼接Ajax请求路径

本文主要是介绍Thymeleaf获取应用程序上下文,拼接Ajax请求路径,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

配置文件

# 端口号设置
server.port: 8082
# 应用程序的上下文路径设置
server.servlet.context-path: /jmw

原生Ajax请求

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>获取应用程序上下文</title>
</head>
<body>
    <button id="btn">发送原生Ajax请求</button>
</body>
<script th:src="@{/js/jquery.min.js}"></script>
<script th:inline="javascript" type="text/javascript">

	// 通过Thymeleaf内置函数获取应用程序上下文路径
    const ctxPath = [[${#httpServletRequest.getContextPath()}]];
    console.log(ctxPath);  // /jmw

    $("#btn").on("click", function() {
        $.get(`${ctxPath}/init/test`, function(data, status){
            console.log(status);
        });
    });
</script>
</html>
这篇关于Thymeleaf获取应用程序上下文,拼接Ajax请求路径的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!