我收到以下错误:
AbstractController::ActionNotFound at /add_comment/9
这是此错误的根源:
# By default Rails will render un-implemented actions when the view exists. Becuase Active
# Admin allows you to not render any of the actions by using the #actions method, we need
# to check if they are implemented.
def only_render_implemented_actions
raise AbstractController::ActionNotFound unless action_methods.include?(params[:action])
end
在捆绑活动管理员之前,我没有出现此错误。
我的 add_comment 操作在我的评论控制器内,路径如下:
match 'add_comment/:id', to: 'comments#new'
我已经卸载了活动管理员,并确认活动管理员导致了问题。
有谁知道这是关于什么的?