在 Rails 视图中显示依赖于 SQL 值的字段
想知道是否有人可以帮助我。 我刚刚开始,所以这对某些人来说可能看起来有点平凡。我 有一个视图,如果特定的话我需要显示某些字段 值是在数据库中选择的。 该示例类似于博客文章,您可能想要也可能不想 显示源链接。所以在后端有一个复选框,它是 附加到 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在 erb 视图中使用条件。
例如:
You can use conditionals in erb views.
For example: