在 Rails 视图中显示依赖于 SQL 值的字段

发布于 2024-10-18 12:41:04 字数 217 浏览 1 评论 0原文

想知道是否有人可以帮助我。 我刚刚开始,所以这对某些人来说可能看起来有点平凡。我 有一个视图,如果特定的话我需要显示某些字段 值是在数据库中选择的。 该示例类似于博客文章,您可能想要也可能不想 显示源链接。所以在后端有一个复选框,它是 附加到 sql 布尔值,那么如果勾选它,您也可以 将链接放入源位置。 但是在前端,如果布尔值设置为 false 我不想要 显示该字段中的数据。最好的方法是什么 这?

was wondering if anyone can help me.
I'm just starting ou so this may seem a bit mundane to some people. I
have a view which I need to display certain fields if a particular
value is selected in the database.
The example is similar to a blog post where you may or may not want to
show a source link. So in the backend there is a tick box which is
attached to a sql boolean value then if that is ticked you can also
put the link in for the source location.
On the front end however if the boolean is set to false I don't want
to display the data in that field. What's the best way of going about
this?

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

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

发布评论

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

评论(1

原谅我要高飞 2024-10-25 12:41:04

您可以在 erb 视图中使用条件。

例如:

<% if @v == 4 %>
   <p>v is equal 4.</p>
<% else %>
   <p>v isn't equal 4.</p>
<% end %> 

You can use conditionals in erb views.

For example:

<% if @v == 4 %>
   <p>v is equal 4.</p>
<% else %>
   <p>v isn't equal 4.</p>
<% end %> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文