在我的 application_controller.rb 我有一行
# Get the previous url string nicely.
previousPath = Rails.application.routes.recognize_path(request.referrer)
但我在那条线上得到了这个错误
NoMethodError (undefined method `authenticate?' for nil:NilClass)
这似乎与设计有关。但是当我确实包含 Devise::TestHelpers 时,我得到 env is not defined 或其他东西,这似乎不是一个好的解决方案。
关于如何解决这个问题而不需要我捕捉错误或正则表达式来分割路径的任何想法?