如何在表单中访问模型的父元素属性?例如,对于以下答案形式,我想访问answer.question.text并将其用于问题 - 我该怎么做?
谢谢!
<% form_for :answers do |ans| %>
<%= ans.label :question, "Question" %>
<%= ans.text_field :value %>
答案 0 :(得分:6)
我最终使用了ans.object.question.text - 不知道你可以做form.object!哇!
答案 1 :(得分:0)
你试过ans.question.text
吗?您可能需要确保问题已经通过答案查找器中的:include => question
加载。