在我的rails应用程序(v. 4.1.9)中,我在创建操作后收到以下错误:arguments passed to url_for can't be handled. Please require routes or provide your own implementation
下面是我的代码:
- 路由. rb**
scope module: :explore do
resources :questions
end
- 问题_控制器. rb**
class Explore::QuestionsController < Explore::BaseController
respond_to :html
authorize_resource
def create
@question = Question.new question_params
@question.save
respond_with @question
end
end
我也尝试了respond_with question_path
和redirect_to question_path
,但总是同样的错误。
有什么想法吗?
2条答案
按热度按时间soat7uwm1#
我发现了我的问题。在一个助手中我包括了
ActionView::Helpers::UrlHelper
。删除这个之后,respond_with
和redirect_to
工作正常。lhcgjxsq2#
试试这个