将类添加到button_to rails标签

时间:2018-07-05 14:09:45

标签: ruby-on-rails ruby-on-rails-4

我的应用程序中有一个按钮标记:

<%= 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"} %>

但是,这似乎并没有取消订阅的作用,但是当我删除该类时,它就起作用了。我需要它与班级一起工作。

0 个答案:

没有答案