我正在尝试从表单创建记录。我使用 railscast 136 作为基础工作。当我尝试提交时,我因缺少部分而收到 500 错误。我已经创建了控制器相关的javascript视图,但它正在请求与模型同名的视图。
错误信息
呈现约会/创建.js.erb (3.8ms) 已完成 500 内部 12 毫秒内出现服务器错误
操作视图::模板::错误(缺少部分约会/约会) with {:locale=>[:en], :formats=>[:js, :html], :handlers=>[:erb, :建造者, :咖啡]}.搜索于: * "/Users/gjores/Sites/Rails/verkstad_test/app/views" ): 1: $('#appointments').append('<%= j render(@appointment) %>'); app/views/appointments/create.js.erb:1:in
_app_views_appointments_create_js_erb___2325925946390315228_70273089113920' app/controllers/appointments_controller.rb:16:in
创造"
控制器
def create
@appointment = Appointment.new(params[:appointment])
if @appointment.save
respond_to do |format|
format.html { redirect_to new_appointment_path, :notice => "Successfully created appointment." }
format.js
end
else
render :action => 'new'
end
end
预约/新.html.erb
<div id="appointments">
<%= render 'shared/appointment_part' %>
</div>
<% title "New Appointment" %>
<table>
<% @students.each do |s| %>
<%= form_for @appointment, :remote => true do |f|%>
<%= f.error_messages %>
<tr>
<td><%= s.name %></td>
<td><%= f.label :week %></td>
<td><%= f.number_field :week %></td>
<td><%= f.label :teacher_id %></td>
<td><%= f.collection_select(:teacher_id, Teacher.all, :id, :name) %></td>
<%= f.hidden_field :student_id, :value => s.id %>
<td><%= f.submit %></td>
</tr>
<% end %>
<% end -%>
</table>
<p><%= link_to "Back to List", appointments_path %></p>
约会/创建.js.erb
$('#appointments').append('<%= j render(@appointment) %>');
路线
appointments GET /appointments(.:format) appointments#index
POST /appointments(.:format) appointments#create
new_appointment GET /appointments/new(.:format) appointments#new
edit_appointment GET /appointments/:id/edit(.:format) appointments#edit
appointment GET /appointments/:id(.:format) appointments#show
PUT /appointments/:id(.:format) appointments#update
DELETE /appointments/:id(.:format) appointments#destroy
teachers GET /teachers(.:format) teachers#index
POST /teachers(.:format) teachers#create
new_teacher GET /teachers/new(.:format) teachers#new
edit_teacher GET /teachers/:id/edit(.:format) teachers#edit
teacher GET /teachers/:id(.:format) teachers#show
PUT /teachers/:id(.:format) teachers#update
DELETE /teachers/:id(.:format) teachers#destroy
notice_students POST /students/notice(.:format) students#notice
students GET /students(.:format) students#index
POST /students(.:format) students#create
new_student GET /students/new(.:format) students#new
edit_student GET /students/:id/edit(.:format) students#edit
student GET /students/:id(.:format) students#show
PUT /students/:id(.:format) students#update
DELETE /students/:id(.:format) students#destroy
您的堆栈跟踪显示
Missing partial appointments/appointment
所以看起来 rails 试图渲染一个称为 appointments/appointments.html 或约会/约会的部分.js
是否存在名为 appointments.js.erb 或 appointments.html.erb 的文件?
如果没有,请创建它。
但是,我怀疑您要做的是显示您的约会,因为我认为您希望下面的代码更新页面上某些元素的html
$('#appointments').append('<%= j render(@appointment) %>');
我认为你需要这条线变红
$('#appointments').append('<%= j render :partial => 'appointments/appointment', :formats => :html %>');
您的 html 视图部分应该是 appointments/_appointment.html.erb
这是因为您在视图约会/new.html.erb 中呈现部分,而不是在控制器创建方法中呈现部分。
由于部分是在视图 appointments/new.html.erb 中定义的,因此相应的 javascript 视图应该是 appointments/new.js.erb。