所以我试图显示一些字体很棒的图标,当最喜欢的是真或假时。
我有类似下面的东西:
应用控制器
def favorite_text
@favorite_exists ? '<i class="fas fa-heart"></i>' : '<i class="fas fa-heart-o"</i>'
end
helper_method :favorite_text
在视图中:
<%= link_to favorite_text, update_favorites_path, remote: true %>