如何禁用涡轮链接完全从轨道



我已经看了相当多的帖子和turbollinks文档,我想我还没有完全理解它。我正在尝试完全关闭rails 5应用程序中的涡轮链接。我是这样做的

  1. 移除gem 'trubolinks'
  2. 从application.js中删除所有出现的//=require turbolinks
  3. stylesheet_link_tagjavascript_include_tag中去除data-turbolinks-track

application.html.erb现在看起来像这样

<html>
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title><%= content_for?(:title) ? yield(:title) : "Website" %></title>
    <meta name="description" content="<%= content_for?(:description) ? yield(:description) : "Website" %>">
    <%= stylesheet_link_tag 'application', media: 'all' %>
    <%= stylesheet_link_tag params[:controller]  %>
    <%= javascript_include_tag 'application' %>
    <%= javascript_include_tag :modernizr %>    
    <%= javascript_include_tag params[:controller] %>
    <%= if(params[:action].eql?'contact')
          javascript_include_tag 'https://www.google.com/recaptcha/api.js?onload=vcRecaptchaApiLoaded&render=explicit' , async: 'async',  defer: 'defer' 
        end
    %>  
    <%= csrf_meta_tags %>
  </head>
  <body data-turbolinks='false'>
     ...
  </body>
</html>

application.js文件:

//= require jquery
//= require jquery_ujs
//= require lodash
//= require bootstrap-sprockets
//= require jquery.sticky

和application.css

@import "bootstrap-sprockets";
@import "bootstrap"; 
@import "font-awesome-sprockets";
@import "font-awesome"; 
@import "normalize-rails";
@import "animate";
.... 
/* other css stuff */

我想在正文标签上使用data-turbolinks=false应该有助于在这个布局中的所有页面禁用它。但这没有帮助,页面加载失败,错误

Sprockets::FileNotFound at /
couldn't find file 'turbolinks' with type 'application/javascript'
Checked in these paths: 
  /Users/anadi/Code/website/app/assets/config
  /Users/anadi/Code/website/app/assets/fonts
  /Users/anadi/Code/website/app/assets/images
  /Users/anadi/Code/website/app/assets/javascripts

在主页的这一行

<%= image_tag("pages/home/xyz_logo.png", class: "img-responsive", alt: "Customer") %>

如果我看堆栈跟踪,ActionView总是依赖于turbollinks:

  sprockets (3.7.0) lib/sprockets/directive_processor.rb:182:in `rescue in block in process_directives'
  sprockets (3.7.0) lib/sprockets/directive_processor.rb:179:in `block in process_directives'
  sprockets (3.7.0) lib/sprockets/directive_processor.rb:178:in `process_directives'
  sprockets (3.7.0) lib/sprockets/directive_processor.rb:83:in `_call'
  sprockets (3.7.0) lib/sprockets/directive_processor.rb:68:in `call'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
  sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
  sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
  sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
  sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
  sprockets (3.7.0) lib/sprockets/bundle.rb:23:in `block in call'
  sprockets (3.7.0) lib/sprockets/utils.rb:196:in `dfs'
  sprockets (3.7.0) lib/sprockets/bundle.rb:24:in `call'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
  sprockets (3.7.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
  sprockets (3.7.0) lib/sprockets/loader.rb:134:in `load_from_unloaded'
  sprockets (3.7.0) lib/sprockets/loader.rb:60:in `block in load'
  sprockets (3.7.0) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
  sprockets (3.7.0) lib/sprockets/loader.rb:44:in `load'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
  sprockets (3.7.0) lib/sprockets/cached_environment.rb:47:in `load'
  sprockets (3.7.0) lib/sprockets/base.rb:66:in `find_asset'
  sprockets (3.7.0) lib/sprockets/base.rb:73:in `find_all_linked_assets'
  sprockets (3.7.0) lib/sprockets/manifest.rb:134:in `block in find'
  sprockets (3.7.0) lib/sprockets/manifest.rb:133:in `find'
  sprockets-rails (3.1.1) lib/sprockets/railtie.rb:50:in `precompiled_assets'
  sprockets-rails (3.1.1) lib/sprockets/railtie.rb:35:in `asset_precompiled?'
  sprockets-rails (3.1.1) lib/sprockets/railtie.rb:250:in `block (3 levels) in <class:Railtie>'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:342:in `precompiled?'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:346:in `raise_unless_precompiled_asset'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:313:in `asset_path'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:85:in `block in resolve_asset_path'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:84:in `resolve_asset_path'
  sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:74:in `compute_asset_path'
  actionview (5.0.0) lib/action_view/helpers/asset_url_helper.rb:144:in `asset_path'
  actionview (5.0.0) lib/action_view/helpers/asset_url_helper.rb:311:in `image_path'
  actionview (5.0.0) lib/action_view/helpers/asset_tag_helper.rb:214:in `image_tag'

看起来链轮仍然期望turbolinks js或image_tag url期望它。我不想在每个链接或图像上添加data: { turbolinks: false }。如何让它工作?

  1. 从你的Gemfile中删除gem ' turbollinks '行。
  2. 从你的app/assets/javascripts/application.js中删除//= require的turbollink。
  3. 删除两个"data- turbollinks -track" => true哈希键/值对from your app/views/layouts/application.html.erb.

我可能做错了,重新启用了所有这些,还添加了data-turbolinks-track => true,并保留了<body data-turbolinks='false'>

相关内容

  • 没有找到相关文章

最新更新