Rails路由问题:如何将哈希属性传递给生成的资源?

时间:2010-05-12 19:37:06

标签: ruby-on-rails

说我的路线上有这个.rb:

resources :accounts
除了其他事项外,

给了我:

new_account GET /account/new

我需要生成这个(例如)“/ account / new #test”

如何将“#test”传递给new_account_path()

1 个答案:

答案 0 :(得分:4)

这应该可以解决问题:

new_account_path(:anchor => "test")
#/account/new#test