在JavaScript中,可以通過以下方式獲取contextPath:
<script>
var contextPath = '<%= request.getContextPath() %>';
console.log(contextPath);
</script>
var contextPath = window.location.pathname.substring(0, window.location.pathname.indexOf('/', 1));
console.log(contextPath);
在服務(wù)器端將contextPath設(shè)置為一個(gè)全局變量,然后在JavaScript中直接獲取該變量值:
console.log(contextPath);
這些方法都可以獲取到應(yīng)用的contextPath,你可以根據(jù)自己的項(xiàng)目需求選擇合適的方法。