在我的Rails应用程序中,我有一个带参数的link_to字段,但它没有指定的操作。下面给出了link_to的格式是否有问题。
<%=link_to "Add sub question", :q_id => 13, :action => :question_types, :remote => true %>
我没有遇到方法错误。
实际上,该方法位于questions_controller
内。以上行位于“questions/new.html.erb
”文件
感谢您的帮助:) -
答案 0 :(得分:0)
您还应该指定控制器
<%= link_to "Add sub question", :q_id => 13, :action => "question_types", :controller => "questions", :remote => true %>
确保您创建了正确的路线