gpt4 book ai didi

playframework - 如何在Play Framework 2.0(Java)中重定向到外部URL

转载 作者:行者123 更新时间:2023-12-04 04:37:45 27 4
gpt4 key购买 nike

通过使用 Controller 中的redirect()方法,似乎可以重定向到内部URL。

public static Result index() {
return redirect(routes.Application.tasks());
}

但是我想重定向到 Controller 中的外部URL。 redirect(String)方法仅接受内部URL作为参数。

我需要的是与标准Java servlet重定向等效的Play框架,即
request.sendRedirect(String url)

最佳答案

有时最简单的解决方案只是...有效:

return redirect("http://stackoverflow.com/questions/10962694");

同样值得使用 other availabe redirects例如
  • seeOther(String url)
  • movedPermanently(String url)
  • temporaryRedirect(String url)

  • 等等

    关于playframework - 如何在Play Framework 2.0(Java)中重定向到外部URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10962694/

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