使用 Rails 3。这是一个前端设计问题。
目标:
Contact | Email | URL
显示.html.erb:
<% if !@shop.contact.blank? %>
<%= @shop.contact %>
<% end %>
<% if !@shop.email.blank? %>
<%= @shop.email %>
<% end %>
<% if !@shop.url.blank? %>
<%= link_to @shop.url, @shop.url, :target => "_blank" %>
<% end %>
|
仅当前后元素具有值时,如何输入?在当前阶段,如果没有值,则不输出任何内容。
非常感谢。