我正在寻找将锚点添加到控制器中返回的 url 的可能性:
public static Result open(String id) {
// here I want to add acnhor like #foo to the produced url
return redirect(routes.MyPage.show(id));
}
我发现在 play 1 中使用addRef
方法是可能的,但我在 play 2 中找不到任何替代方法。
当然我可以使用像这样的连接:
public static Result open(String id) {
// here I want to add acnhor like #foo to the produced url
return redirect(routes.MyPage.show(id).url + "#foo");
}
但它看起来很丑。
感谢您的任何帮助!祝你有美好的一天!