Rails 3.2.6弃用警告::不推荐使用confirm选项,将从Rails 4.0中删除。使用':data => {:confirm => '文字'} 0

时间:2012-06-25 22:16:46

标签: ruby-on-rails warnings deprecated

这是我将应用程序从Rails 3.2.3升级到3.2.6后开始出现的警告。以下是我指向的“datatables”相关类中的代码行:

class PdpsDatatable
  delegate :current_user, :is_reader?, :is_admin?, :is_user?, :show_num, :params, :h, :link_to, to: :@view
  # the line above is what the warning is pointing to
end

这个警告有什么简单的解决办法吗?这简直太烦人了。

感谢。

巴勒特

1 个答案:

答案 0 :(得分:2)

我认为问题不在这一行......你可能在应用程序的其他地方有:confirm,例如button_tobutton_tag,{{1} },image_submit_taglink_to

有关此弃用的更多详细信息here

此警告的可能解决方案here