我试图弄清楚如何更改此代码:
%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
,但我不知道如何将它与按钮结合起来。有任何想法吗 ?