标签: ruby-on-rails
说我的路线上有这个.rb:
resources :accounts
给了我:
new_account GET /account/new
我需要生成这个(例如)“/ account / new #test”
如何将“#test”传递给new_account_path()?
new_account_path()
答案 0 :(得分:4)
这应该可以解决问题:
new_account_path(:anchor => "test") #/account/new#test