在某些情况下,它没有tag
像下面这样的参数。
所以我放了 <%= tag + ',' if tag %>,但它得到了这个错误
ActionView::Template::Error(参数数量错误(0 代表 1)):
我该如何解决?
index.html.erb
<%= render 'layouts/social_like', :url => root_url, :title => @title %>
布局/_social_like.html.erb
....
<a href="https://twitter.com/share" class="twitter-share-button" data-lang="en" data-hashtags="<%= tag + ',' if tag %>hash2,hash3,hash4">Tweet</a>
....