嗨,我已经安装了 Thumbs_up gem,效果很好。
但现在我想做一个与此相同的按钮。
<%= link_to('vote for this post!', vote_up_retailer_path(@retailer), :remote => true, :method => :post) %>
我遇到的问题是我想要按钮内的图像和文本,文本为“Like <%= @retailer.title %>”,(就像 youtubes like button)。
我的按钮是这样编码的。`
<button role="button" class="like">
<img src="/images/layout/blank.gif"><span>Like <%= @retailer.title %></span>
</button>
如何在 rails3 中使用这些功能完成按钮?
提前致谢,