Get object value with nested_form
问题 I have a nested form (payments in an order) and I would like to test a value in my nested forms (fields_for) in edit view. But the problem is that I am not able to check each, I can just do this: <% if @order.payments[0].monthly == false %> Do you now how it is possible to check for each, like: <% if @order.payments[current_payment].monthly == false %> 回答1: If I understand the question, you are editing an order and have a fields_for for the payments and want to get the payment instance