Fields_for 动态标签

发布于 2024-08-24 02:01:17 字数 129 浏览 5 评论 0原文

我有动态表单,它有一组值。我创建了一个包含我显示的文本字段的部分。在每个文本旁边,我想显示一个包含文本标题的标签。例如,名字和姓氏以前是未知的。我该如何去做呢? 看来我无法直接访问属性。但是当我使用标签字段时,标签中的变量名称显示而不是实际值。

I have dynamic form which has a set of values. I created a partial which contains text fields which I display. Next to each of them I would like to display a label containing the title of the text. For instance First Name, and Last Name would not be known previously. How do I go about doing that?
It seems that I cannot access the attributes directly. But when I use the label field, the variable name in the label is displayed not the actual value.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

我们的影子 2024-08-31 02:01:17

出色地!这反映了我对 Rails 的陌生程度。您可以使用 f.object.{attr_name} 来完成此操作,并且效果很好。

Well! This was a reflection of how new I am to rails. You can do this by using f.object.{attr_name} and that worked.

给妤﹃绝世温柔 2024-08-31 02:01:17

f.object.{attr_name} 对我不起作用,但 f.object[:attr_name] 对我有用。

f.object.{attr_name} didn't work for me, but f.object[:attr_name] did.

沉睡月亮 2024-08-31 02:01:17

怎么样:

f.object.send(attr_name)

这将是 Ruby 方式。

What about:

f.object.send(attr_name)

That would be the Rubyish way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文