我想弄清楚如何改变这个代码:
%li.input.optional= link_to_remove_association image_tag('minus.png', {:alt => "#{t('blabla.remove_model', model: t('activerecord.models.template_instance_right.one'))}"}), f
使用按钮代替。这是我第一次使用Rails,所以我有点迷路了。
我试着:
=button_to('Remove', {:alt => "#{t('blabla.remove_model', model: t('activerecord.models.template_instance_right.one'))}"})
显示按钮,但不删除记录。
我想我需要使用link_to_remove_association
,但我不知道如何将它与按钮结合起来。有什么想法吗?
将image_tag
替换为button_tag
标签:
%li.input.optional= link_to_remove_association button_tag('Remove', {:alt => "#{t('blabla.remove_model', model: t('activerecord.models.template_instance_right.one'))}"})