我在Ruby on Rails 5应用程序中有以下链接:
= link_to duplicate_slide_group_path(@survey, group), method: :post, remote: true, class: 'narrow button gray tooltip-attached duplicate-link', title: t('duplicate_group_and_contents_without_metadata') do
= fa_icon 'file-o'
该链接的问题是当我点击它时,Turbolinks不显示进度条,在非远程链接中显示进度条。我该如何解决这个问题?
答案 0 :(得分:0)
你可以在.js中使用
$( document ).on('turbolinks:load',function(){
}
像这样的事情