我的应用程序中有一个按钮标记:
<%= button_to"Unsubscribe", cancel_subscription_path, method: :post
data: { confirm: "Are you sure?" },
class:"button btn-dash secondary-btn raised ripple no-lh rounded" %>
当我删除课程时,该按钮似乎可以正常工作,并且可以执行取消订阅的操作,但是当我应用该课程时,该按钮不起作用。
我尝试了将类封装在方括号中的各种形式:
<%= button_to"Unsubscribe", cancel_subscription_path, method: :post
data: { confirm: "Are you sure?" },
{class:"button btn-dash secondary-btn raised ripple no-lh rounded"} %>
但是,这似乎并没有取消订阅的作用,但是当我删除该类时,它就起作用了。我需要它与班级一起工作。