我有一些这样的命名路线rake routes
:
birthdays GET /birthdays(.:format) birthdays#index
在 rakefile 中,我只是希望能够birthdays_url
像我认为的那样调用。
task :import_birthdays => :environment do
url = birthdays_url
end
但我收到一个错误undefined local variable or method 'birthdays_url' for main:Object