我一直在做一个rails教程(在lynda上),我一直在研究一个简单的cms。它有一个控制器和主题模型,我可以使用rails控制台保存主题没有问题。但是当我尝试使用网络表单创建一个新主题时,我收到此错误:The action '#<ActiveRecord::Relation:0x2166e28>' could not be found for SubjectsController
。
Subject模型只有一个关系(has_many: pages
)但不应该影响这个,因为没有webform保存的外键。
new和create的控制器方法如下所示:
def new
@subject = Subject.new
end
def create
#Instantiate a new object using form params
@subject = Subject.new(params[:subject])
#Save the object
if @subject.save
#If save succeds, redirect to list action
redirect_to(action: list)
else
#If save fails, redisplay the form so user can fix problems
render('new')
end
end
重要的事情:控制器成功保存新主题。它只是产生这个错误而不是重定向
Web表单的视图如下所示:
<html>
<%= link_to("<< Back to List", {action:'list'}, class: 'back-link')%>
<div class="subject new">
<h2>Create Subject</h2>
<%= form_for(:subject, url: {action: 'create'}) do |f|%>
<table summary="Subject form fields">
<tr>
<th>Name</th>
<td><%= f.text_field(:name) %></td>
</tr>
<tr>
<th>Position</th>
<td><%= f.text_field(:position) %></td>
</tr>
<tr>
<th>Visible</th>
<td><%= f.text_field(:visible) %></td>
</tr>
</table>
<div class="form-buttons">
<%= submit_tag("Create Subject") %>
</div>
<% end %>
</div>
</html>
答案 0 :(得分:1)
您应该重定向到:list
而不是list
,或更好
redirect_to(action: 'list')