标签: ruby-on-rails ruby ruby-on-rails-4
对于正常的重定向,它会像redirect_to root_path。
redirect_to root_path
如何重定向到:localhost:3000/#contact。我不想直接重定向到root,而是重定向到root用户,还要重定向到根页的联系人部分。
localhost:3000/#contact
这可能吗?
答案 0 :(得分:8)
这应该有效:
redirect_to root_path(anchor: 'contact')