gpt4 book ai didi

thymeleaf - 从 Thymeleaf 模板重定向页面

转载 作者:行者123 更新时间:2023-12-02 17:24:35 32 4
gpt4 key购买 nike

如何从 Thymeleaf 重定向页面(我有如下 JSP 代码)

out.println("REDIRECT=http://www.example.com/api/response?id="+id)

Thymeleaf 中的等效项是什么?我想从模板中进行。

最佳答案

Thymeleaf 不提供任何从其模板之一重定向到另一个页面的机制——无论如何我都不建议这样做(因为这可能应该在 Controller 级别处理)。

也就是说,可以使用 javascript 执行此操作。像这样:

<script th:inline="javascript">
window.location.href = 'http://www.example.com/api/response?id=' + [[${id}]];
</script>

或者可能是元刷新标签。

<meta http-equiv="refresh" th:attr="content=${'5; url=http://example.com/api/response?id=' + id}" />

关于thymeleaf - 从 Thymeleaf 模板重定向页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39725310/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com