gpt4 book ai didi

ruby-on-rails - rails : fields_for with index?

转载 作者:行者123 更新时间:2023-12-01 19:50:07 26 4
gpt4 key购买 nike

有没有一种方法(或实现类似功能的方法)来执行fields_for_with_index

示例:

<% f.fields_for_with_index :questions do |builder, index| %>  
<%= render 'some_form', :f => builder, :i => index %>
<% end %>

正在渲染的部分需要知道 fields_for 循环中的当前索引是什么。

最佳答案

答案非常简单,因为 Rails 中提供了解决方案。您可以使用 f.options 参数。因此,在渲染的 _some_form.html.erb 内,

索引可以通过以下方式访问:

<%= f.options[:child_index] %>

您无需执行任何其他操作。

<小时/>

更新:看来我的回答不够清楚...

原始 HTML 文件:

<!-- Main ERB File -->
<% f.fields_for :questions do |builder| %>
<%= render 'some_form', :f => builder %>
<% end %>

渲染的子表单:

<!-- _some_form.html.erb -->
<%= f.options[:child_index] %>

关于ruby-on-rails - rails : fields_for with index?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4853373/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com