Rails部分:未定义的局部变量
Rails Partial: Undefined Local Variable
我很少使用 rails,如果这很明显,请原谅。我查看了其他问题,从 Ruby On Rail Guide 开始工作,看起来我做的是正确的,但我仍然无法让我的局部变量工作。
todays/show.html.erb
<p>
<strong>Tasks:</strong>
<%= render partial: "next_steps/next_step_today",
collection: @today_lines %>
</p>
next_steps/_next_step_today.html.erb
<p>
<%= render partial: "next_steps/next_step",
locals: {next_step: today_line.next_step} %>
<%= link_to 'x', today_line, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
next_steps/_next_step.html.erb
<span class="<%= next_step.complete ? "completed_next_step" : ""%> next_step_span_<%= next_step.id%>">
<%= form_for(next_step,
:remote => true,
:html => {:'data-type' => 'json',
:multipart => true,
:id => "edit_next_step_#{next_step.id}_#{rand()}"}
) do |f| %>
<%= f.hidden_field( :id, :value => next_step.id) %>
<%= f.hidden_field( :note_id, :value => next_step.note_id) %>
<%= f.hidden_field( :content, :value => next_step.content) %>
<%= f.hidden_field( :due_date, :value => next_step.due_date) %>
<%= f.check_box( :complete, :class => "next_step_complete_button" ) %>
<%= next_step.content %>
<% end %>
</span>
我知道在我开始尝试添加分音以获得额外的灵活性之前,最后一个分音 _next_step.html.erb
正在工作。现在我似乎无法正确传递当地人。
我之前的工作代码是
todays/show.html.erb
<p>
<strong>Tasks:</strong>
<% @today_lines.each do |today_line| %>
<p><%= render today_line.next_step %></p>
<% end %>
</p>
错误信息
今天的名字错误#show
显示 /.../app/views/next_steps/_next_step_today.html.erb 第 3 行出现的位置:
#<#:0x007f930adbd860> 的未定义局部变量或方法“today_line”
提取的源代码(大约第 3 行):
<p>
<%= render partial: "next_steps/next_step",
locals: {next_step: today_line.next_step} %>
<%= link_to 'x', today_line, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
有什么想法吗?
编辑:最终工作代码
todays/show.html.erb
<p>
<strong>Tasks:</strong>
<%= render partial: "next_steps/next_step_today",
collection: @today_lines %>
</p>
_next_step_today.html.erb
<p>
<%= render "next_steps/next_step",
next_step: next_step_today.next_step %>
<%= link_to 'x', next_step_today, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
collection:
确实要求您使用本地变量的部分文件名。
我在搜索中还发现,如果不使用partial:
,也可以省略locals:
,直接使用变量名,这样更简洁。此更改显示在 _next_step_today.html.erb
中。我希望我也可以命名集合变量,而不是使用部分文件名,或者不是使用每个,但这已经足够接近并且可以工作了。
显示需要指定部分将使用的键名。所以:
<%= render partial: "next_steps/next_step_today",
today_lines: @today_lines %>
同时修正 next_step_today 部分的拼写:
<%= render partial: "next_steps/next_step",
locals: {next_step: today_lines.next_step} %>
部分中的变量名称派生自部分本身的名称,而不是集合的名称。
您的 _next_step_today.html.erb 应该如下所示:
<p>
<%= render partial: "next_steps/next_step",
locals: {next_step: next_step_today.next_step} %>
<%= link_to 'x', next_step_today, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
编辑:如果你想坚持@collection 约定,那就是
我很少使用 rails,如果这很明显,请原谅。我查看了其他问题,从 Ruby On Rail Guide 开始工作,看起来我做的是正确的,但我仍然无法让我的局部变量工作。
todays/show.html.erb
<p>
<strong>Tasks:</strong>
<%= render partial: "next_steps/next_step_today",
collection: @today_lines %>
</p>
next_steps/_next_step_today.html.erb
<p>
<%= render partial: "next_steps/next_step",
locals: {next_step: today_line.next_step} %>
<%= link_to 'x', today_line, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
next_steps/_next_step.html.erb
<span class="<%= next_step.complete ? "completed_next_step" : ""%> next_step_span_<%= next_step.id%>">
<%= form_for(next_step,
:remote => true,
:html => {:'data-type' => 'json',
:multipart => true,
:id => "edit_next_step_#{next_step.id}_#{rand()}"}
) do |f| %>
<%= f.hidden_field( :id, :value => next_step.id) %>
<%= f.hidden_field( :note_id, :value => next_step.note_id) %>
<%= f.hidden_field( :content, :value => next_step.content) %>
<%= f.hidden_field( :due_date, :value => next_step.due_date) %>
<%= f.check_box( :complete, :class => "next_step_complete_button" ) %>
<%= next_step.content %>
<% end %>
</span>
我知道在我开始尝试添加分音以获得额外的灵活性之前,最后一个分音 _next_step.html.erb
正在工作。现在我似乎无法正确传递当地人。
我之前的工作代码是
todays/show.html.erb
<p>
<strong>Tasks:</strong>
<% @today_lines.each do |today_line| %>
<p><%= render today_line.next_step %></p>
<% end %>
</p>
错误信息
今天的名字错误#show
显示 /.../app/views/next_steps/_next_step_today.html.erb 第 3 行出现的位置:
#<#:0x007f930adbd860> 的未定义局部变量或方法“today_line” 提取的源代码(大约第 3 行):
<p>
<%= render partial: "next_steps/next_step",
locals: {next_step: today_line.next_step} %>
<%= link_to 'x', today_line, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
有什么想法吗?
编辑:最终工作代码
todays/show.html.erb
<p>
<strong>Tasks:</strong>
<%= render partial: "next_steps/next_step_today",
collection: @today_lines %>
</p>
_next_step_today.html.erb
<p>
<%= render "next_steps/next_step",
next_step: next_step_today.next_step %>
<%= link_to 'x', next_step_today, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
collection:
确实要求您使用本地变量的部分文件名。
我在搜索中还发现,如果不使用partial:
,也可以省略locals:
,直接使用变量名,这样更简洁。此更改显示在 _next_step_today.html.erb
中。我希望我也可以命名集合变量,而不是使用部分文件名,或者不是使用每个,但这已经足够接近并且可以工作了。
显示需要指定部分将使用的键名。所以:
<%= render partial: "next_steps/next_step_today",
today_lines: @today_lines %>
同时修正 next_step_today 部分的拼写:
<%= render partial: "next_steps/next_step",
locals: {next_step: today_lines.next_step} %>
部分中的变量名称派生自部分本身的名称,而不是集合的名称。
您的 _next_step_today.html.erb 应该如下所示:
<p>
<%= render partial: "next_steps/next_step",
locals: {next_step: next_step_today.next_step} %>
<%= link_to 'x', next_step_today, method: :delete, data: { confirm: 'Are you sure?' } %>
</p>
编辑:如果你想坚持@collection 约定,那就是