如何在rails模板中使用数据库字段作为属性值

发布于 2025-01-07 16:41:00 字数 292 浏览 0 评论 0原文

我基本上想这样做:

<% @videos.each do |vid| %>

  <div id=vid.location>

...
<% end %>

如何评估 vid.locaion 并将其用作 id 属性?

我已经尝试过上面的 id="#{vid.location}"id="<% vid.location %>" (最后一个带有并没有

任何帮助表示感谢。

I basically want to do this:

<% @videos.each do |vid| %>

  <div id=vid.location>

...
<% end %>

how do I evaluate vid.locaion and use it as the id attribute?

i've tried the above, id="#{vid.location}" and id="<% vid.location %>" (the last one with and without quotes.

any help appreciated

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

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

发布评论

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

评论(1

辞取 2025-01-14 16:41:00

简单,

<div id="<%= vid.location %>">

您的第一次尝试是错误的,因为您仍在标记中 - 而不是 ruby​​。在最后一个中,您使用了 <% 而不是 <%=,因此在评估 getter 时,它只是没有将其呈现给您的视图。

Easy,

<div id="<%= vid.location %>">

Your first attempt was wrong as you're still in markup - not ruby. In the last one you used <% rather than <%=, so while it was evaluating the getter, it just didn't present it to your view.

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