我在 Rails 应用程序中使用回形针。如果字段出现属性,我想使用通过回形针上传的图像,如果没有,则使用另一个图像。使用此代码,if 语句的第一部分始终执行,而不管徽标字段中是否有条目。有什么建议吗?
<% if @product.logo.url %>
<%= image_tag @product.logo.url, :style => 'width:60px;' %>
<% else %>
<img src = '/assets/logo/<%= @product.slug.downcase %>-sq.jpg' class="img-circle" style = 'width:60px;'>
<% end %>