erb 中的 Ruby 三元运算符?
我怎样才能让这段代码看起来更好:
<%=raw manuscript.uploaded_to_s3? ? "<span style=\"color:green;\">" : "<span style=\"color:red;\">" %>
也就是说,HTML 可以放在 ERB 块之外,使其更容易阅读吗?
How can I make this code look better:
<%=raw manuscript.uploaded_to_s3? ? "<span style=\"color:green;\">" : "<span style=\"color:red;\">" %>
That is, can the HTML go outside of the ERB block making this easier to read?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我提倡使用 CSS 类而不是样式属性 8P:
I would advocate a CSS class rather than style attribute 8P: