Rails的ExecJS :: ProgramError在页面#回家吗?Rails的ExecJS :

2019-05-10 10:56发布

开始一个新的应用程序,当我创建一个控制器页面主页,并尝试去本地主机:3000 /页/家,我得到以下错误:

Showing c:/Users/Doesha/desktop/pinplug/app/views/layouts/application.html.erb where line #6 raised:

TypeError: Object doesn't support this property or method
  (in c:/RailsInstaller/Ruby2.1.0/lib/ruby/gems/2.1.0/gems/turbolinks-2.5.3/lib/assets/javascripts/turbolinks.js.coffee)

application.html.erb文件:

<!DOCTYPE html>
<html>
<head>
  <title>Pinplug</title>
  <%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
  <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
  <%= csrf_meta_tags %>
</head>
<body>

<%= yield %>

</body>
</html>

application_controller.rb文件:

class ApplicationController < ActionController::Base
  # Prevent CSRF attacks by raising an exception.
  # For APIs, you may want to use :null_session instead.
  protect_from_forgery with: :exception
end

pages_controller.rb文件:

class PagesController < ApplicationController
  def home
  end
end

的routes.rb文件:

Rails.application.routes.draw do
  get 'pages/home'

  # The priority is based upon order of creation: first created -> highest priority.
  # See how all your routes lay out with "rake routes".

  # You can have the root of your site routed with "root"
  # root 'welcome#index'

  # Example of regular route:
  #   get 'products/:id' => 'catalog#view'

  # Example of named route that can be invoked with purchase_url(id: product.id)
  #   get 'products/:id/purchase' => 'catalog#purchase', as: :purchase

  # Example resource route (maps HTTP verbs to controller actions automatically):
  #   resources :products

  # Example resource route with options:
  #   resources :products do
  #     member do
  #       get 'short'
  #       post 'toggle'
  #     end
  #
  #     collection do
  #       get 'sold'
  #     end
  #   end

  # Example resource route with sub-resources:
  #   resources :products do
  #     resources :comments, :sales
  #     resource :seller
  #   end

  # Example resource route with more complex sub-resources:
  #   resources :products do
  #     resources :comments
  #     resources :sales do
  #       get 'recent', on: :collection
  #     end
  #   end

  # Example resource route with concerns:
  #   concern :toggleable do
  #     post 'toggle'
  #   end
  #   resources :posts, concerns: :toggleable
  #   resources :photos, concerns: :toggleable

  # Example resource route within a namespace:
  #   namespace :admin do
  #     # Directs /admin/products/* to Admin::ProductsController
  #     # (app/controllers/admin/products_controller.rb)
  #     resources :products
  #   end
end

的Gemfile:

source 'https://rubygems.org'


# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.0'
# Use sqlite3 as the database for Active Record
gem 'sqlite3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.1.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby

gem 'execjs', '~> 2.2.2'

# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc

# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'

# Use Unicorn as the app server
# gem 'unicorn'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug'

  # Access an IRB console on exception pages or by using <%= console %> in views
  gem 'web-console', '~> 2.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

Gemfile.lock的文件:

GEM
  remote: https://rubygems.org/
  specs:
    actionmailer (4.2.0)
      actionpack (= 4.2.0)
      actionview (= 4.2.0)
      activejob (= 4.2.0)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 1.0, >= 1.0.5)
    actionpack (4.2.0)
      actionview (= 4.2.0)
      activesupport (= 4.2.0)
      rack (~> 1.6.0)
      rack-test (~> 0.6.2)
      rails-dom-testing (~> 1.0, >= 1.0.5)
      rails-html-sanitizer (~> 1.0, >= 1.0.1)
    actionview (4.2.0)
      activesupport (= 4.2.0)
      builder (~> 3.1)
      erubis (~> 2.7.0)
      rails-dom-testing (~> 1.0, >= 1.0.5)
      rails-html-sanitizer (~> 1.0, >= 1.0.1)
    activejob (4.2.0)
      activesupport (= 4.2.0)
      globalid (>= 0.3.0)
    activemodel (4.2.0)
      activesupport (= 4.2.0)
      builder (~> 3.1)
    activerecord (4.2.0)
      activemodel (= 4.2.0)
      activesupport (= 4.2.0)
      arel (~> 6.0)
    activesupport (4.2.0)
      i18n (~> 0.7)
      json (~> 1.7, >= 1.7.7)
      minitest (~> 5.1)
      thread_safe (~> 0.3, >= 0.3.4)
      tzinfo (~> 1.1)
    arel (6.0.0)
    binding_of_caller (0.7.2)
      debug_inspector (>= 0.0.1)
    builder (3.2.2)
    byebug (3.5.1)
      columnize (~> 0.8)
      debugger-linecache (~> 1.2)
      slop (~> 3.6)
    coffee-rails (4.1.0)
      coffee-script (>= 2.2.0)
      railties (>= 4.0.0, < 5.0)
    coffee-script (2.3.0)
      coffee-script-source
      execjs
    coffee-script-source (1.9.0)
    columnize (0.9.0)
    debug_inspector (0.0.2)
    debugger-linecache (1.2.0)
    erubis (2.7.0)
    execjs (2.2.2)
    globalid (0.3.2)
      activesupport (>= 4.1.0)
    hike (1.2.3)
    i18n (0.7.0)
    jbuilder (2.2.6)
      activesupport (>= 3.0.0, < 5)
      multi_json (~> 1.2)
    jquery-rails (4.0.3)
      rails-dom-testing (~> 1.0)
      railties (>= 4.2.0)
      thor (>= 0.14, < 2.0)
    json (1.8.2)
    loofah (2.0.1)
      nokogiri (>= 1.5.9)
    mail (2.6.3)
      mime-types (>= 1.16, < 3)
    mime-types (2.4.3)
    mini_portile (0.6.2)
    minitest (5.5.1)
    multi_json (1.10.1)
    nokogiri (1.6.6.2-x86-mingw32)
      mini_portile (~> 0.6.0)
    rack (1.6.0)
    rack-test (0.6.3)
      rack (>= 1.0)
    rails (4.2.0)
      actionmailer (= 4.2.0)
      actionpack (= 4.2.0)
      actionview (= 4.2.0)
      activejob (= 4.2.0)
      activemodel (= 4.2.0)
      activerecord (= 4.2.0)
      activesupport (= 4.2.0)
      bundler (>= 1.3.0, < 2.0)
      railties (= 4.2.0)
      sprockets-rails
    rails-deprecated_sanitizer (1.0.3)
      activesupport (>= 4.2.0.alpha)
    rails-dom-testing (1.0.5)
      activesupport (>= 4.2.0.beta, < 5.0)
      nokogiri (~> 1.6.0)
      rails-deprecated_sanitizer (>= 1.0.1)
    rails-html-sanitizer (1.0.1)
      loofah (~> 2.0)
    railties (4.2.0)
      actionpack (= 4.2.0)
      activesupport (= 4.2.0)
      rake (>= 0.8.7)
      thor (>= 0.18.1, < 2.0)
    rake (10.4.2)
    rdoc (4.2.0)
      json (~> 1.4)
    sass (3.4.11)
    sass-rails (5.0.1)
      railties (>= 4.0.0, < 5.0)
      sass (~> 3.1)
      sprockets (>= 2.8, < 4.0)
      sprockets-rails (>= 2.0, < 4.0)
      tilt (~> 1.1)
    sdoc (0.4.1)
      json (~> 1.7, >= 1.7.7)
      rdoc (~> 4.0)
    slop (3.6.0)
    sprockets (2.12.3)
      hike (~> 1.2)
      multi_json (~> 1.0)
      rack (~> 1.0)
      tilt (~> 1.1, != 1.3.0)
    sprockets-rails (2.2.4)
      actionpack (>= 3.0)
      activesupport (>= 3.0)
      sprockets (>= 2.8, < 4.0)
    sqlite3 (1.3.10-x86-mingw32)
    thor (0.19.1)
    thread_safe (0.3.4)
    tilt (1.4.1)
    turbolinks (2.5.3)
      coffee-rails
    tzinfo (1.2.2)
      thread_safe (~> 0.1)
    tzinfo-data (1.2015.1)
      tzinfo (>= 1.0.0)
    uglifier (2.7.0)
      execjs (>= 0.3.0)
      json (>= 1.8.0)
    web-console (2.0.0)
      activemodel (~> 4.0)
      binding_of_caller (>= 0.7.2)
      railties (~> 4.0)
      sprockets-rails (>= 2.0, < 4.0)

PLATFORMS
  x86-mingw32

DEPENDENCIES
  byebug
  coffee-rails (~> 4.1.0)
  execjs (~> 2.2.2)
  jbuilder (~> 2.0)
  jquery-rails
  rails (= 4.2.0)
  sass-rails (~> 5.0)
  sdoc (~> 0.4.0)
  sqlite3
  turbolinks
  tzinfo-data
  uglifier (>= 1.3.0)
  web-console (~> 2.0)

application.rb中的文件:

require File.expand_path('../boot', __FILE__)

require 'rails/all'

# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)

module Pinplug
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.

    # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
    # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
    # config.time_zone = 'Central Time (US & Canada)'

    # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
    # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
    # config.i18n.default_locale = :de

    # Do not swallow errors in after_commit/after_rollback callbacks.
    config.active_record.raise_in_transactional_callbacks = true
  end
end

我还调降turbolinks宝石从2.3.0到2.2.2,以为turbolinks宝石的较新版本引起了我的应用程序有错误; 显然这并没有为我工作。

什么有什么建议可以不对我的应用程序走向何方?

Answer 1:

在您的/app/views/layouts/application.html.erb线56,第一个参数从改变applicationdefault

我遇到了同样的问题,也为我的情况,我不知道为什么,但它只会发生在Windows上。 参数application工作在Web服务器上。



Answer 2:

如果您在Windows中运行,咖啡脚本代码1.9.0不工作在Windows上。

将其更改为以前的版本中添加这一行到你的Gemfile:

gem 'coffee-script-source', '1.8.0'

然后重新安装包调整为新的宝石版本的依赖关系:

bundle update coffee-script-source


Answer 3:

我一直有这个问题了一段时间,并通过在这个线程所有的答案在经历,发现他们全都是不成功的,我已经决定增加在希望它有助于未来Rails开发者我的解决方案。

我所做的一切,在这个线程-更改applicationdefault允许它要经过没有错误,但后来一旦你真正尝试使用任何JavaScript,对于不能够找到则显示错误default.js 。 我已经安装和的NodeJS把它放在我的Ruby / bin文件夹。 那什么也没做,所以我删除它。

你可以暂时确实解决这个问题,“切换出applicationdefault ”解决方案,但它是非常短期的。 该解决方案可以为你工作,如果你有通过rails资产管道没有定型或添加JavaScript到您的应用程序的意图。 我没有这个测试我自己,但我想,包括JavaScript和在application.html头文件可能工作样式表。 但你失去了Rails的魔力。

我曾在Windows 8中,Windows 10和Ubuntu平台这个问题。

能解决它,对我来说,仍然呈现JavaScript和样式表的唯一的事情是,首先改变applicationapplication.css的样式表(即使你使用的Sass / SCSS,因为它仍然会编译成CSS)和application.js的JavaScript的链接。 一旦做到这一点,进入你的/assets/javascripts/application.js文件并删除//前面//= require turbolinks

现在您的应用程序应该只是罚款。

这可能是与turbolinks一个更深层次的问题,但是这是一个快速的解决方法还没有让我失望过。



Answer 4:

在Windows咖啡脚本源> = 1.9.0无法正常工作。 刚加入的Gemfile

 gem 'coffee-script-source', '1.8.0'

并运行

bundle update coffee-script-source


Answer 5:

只要安装在本地计算机上的NodeJS(确保correspodning条目添加到PATH)和加入

gem 'execjs'

的Gemfile。



Answer 6:

在Windows 1511 10版本中,加入宝石“咖啡脚本源”,“1.8.0”我的Gemfile,然后红宝石斌\包更新咖啡脚本源从项目目录工作。 注:访问内容被取代了之前的咖啡脚本源码的版本是1.10.0



Answer 7:

(在Windows 8)

  1. 安装Node.js的!
  2. 将它添加到PATH(ENV_VAR)
  3. 重新启动服务器


Answer 8:

我有这个问题了。 我走进崇高到我的项目文件夹中。 然后点击应用程序的文件夹,文件夹视图,布局,点击application.html.erb和改变线5和6“应用”到“缺省”。 伟大的工作。 感谢张贴您的问题,谢谢那些回答!

我只是想补充我去的极端。 我刚学,我不知道如何访问.erb文件。 只是想帮助别人。



Answer 9:

我只是改变了“ application ”到“ default的行5和6,并解决”。 /app/views/layouts/application.html.erb

从:

<%= stylesheet_link_tag    '**application**', media: 'all', 'data-turbolinks-track' => true %>
  <%= javascript_include_tag '**application**', 'data-turbolinks-track' => true %>

至:

<%= stylesheet_link_tag    '**default**', media: 'all', 'data-turbolinks-track' => true %>
  <%= javascript_include_tag '**default**', 'data-turbolinks-track' => true %>


Answer 10:

终于得到了它的工作是什么松了一口气。 虽然我并不完全相信使它工作。 尝试了所有的以下内容。 1)安装的node.js,加入coffescript NPM到它,并重新启动。 2)增加了对exec.js宝石和修改runtime.rb,使其无法使用默认的Windows脚本文件。 请参阅有关如何做到这一点这个链接:[ https://github.com/sstephenson/execjs/issues/81][1] 3)为了安全起见,还增加了rubyracer宝石宝石“therubyracer”,平台:红宝石

综上所述增加了两个脚本引擎,和的NodeJS和rubyracer添加execjs,使其选择最佳脚本引擎,但不能选择scrpting引擎窗口。

我猜只是安装单独的NodeJS可能加入execjs后工作过。 但是我并没有重新启动(后安装的NodeJS),并尝试了所有其他的事情。



Answer 11:

我尝试了所有的解决方案之上,只有正确地工作的一个是安装node.js的,该目录添加到“路径”环境变量窗口(在高级系统设置,Envirnment变量,路径中找到),然后重新启动计算机和服务器。 我觉得以后的版本咖啡脚本源必须是依赖于node.js的,与其他宝石一起。 我有相同的错误,而无需使用咖啡脚本代码。

更改“应用”到“默认”是一个可怕的解决方案,但因为它只是删除所有应用程序的CSS样式的。 我不推荐它了。



Answer 12:

我们只应该从改变线6 applicationdefault的/app/views/layouts/application.html.erb。 改变线5将导致样式不加载。



Answer 13:

你需要阅读的页面轨道的指令。 你需要ExecJS宝石和一些JS运行时。

更实用:1 .-安装一些JS运行,例如node.js的

2:GET ExecJS偕 - >创业板安装execjs

解释:

从轨页:

“编译的CoffeeScript和JavaScript资产压缩需要你有一个JavaScript运行在系统上,在没有运行时,你会看到资产编译过程中execjs错误的。通常的Mac OS X和Windows预装有一个JavaScript运行。Rails添加的therubyracer宝石产生的Gemfile中对新的应用程序,如果你需要它,你可以取消一个注释行。therubyrhino,是JRuby用户推荐的运行时,默认情况下加入到Gemfile中JRuby中下生成的应用程序,你可以调查所有受支持运行时间在ExecJS“。

从ExecJS的兴田github上:

“ExecJS让您从Ruby的JavaScript代码,它会自动选择可用来评估你的JavaScript程序的最佳运行,然后将结果返回给你作为一个Ruby对象。

ExecJS支持这些运行时间:

therubyracer - Google V8 embedded within Ruby
therubyrhino - Mozilla Rhino embedded within JRuby
Duktape.rb - Duktape JavaScript interpreter
Node.js
Apple JavaScriptCore - Included with Mac OS X
Microsoft Windows Script Host (JScript)
Google V8
mini_racer - Google V8 embedded within Ruby" 

ExecJS GitHub的自述



Answer 14:

它与turbolinks宝石所以它的创建错误的问题

因此,在应用程序\意见\布局\ application.html.erb改变这种

<%= stylesheet_link_tag    'application.css', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_include_tag 'application.js', 'data-turbolinks-track': 'reload' %>

<%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track': 'reload' %>
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>

并取消了15号线在app \资产\ JavaScript的\的application.js

require turbolinks

并将其复制到应用程序\资产\样式表\ application.css在文件的结尾

从此你的CSS和JS将运行



Answer 15:

我on Rails的5.1.6。 我遇到过同样的问题。 建议以上我降低其解决问题的咖啡脚本代码宝石。

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2' # <-- This existed already
gem 'coffee-script-source', '1.8.0' # <-- Adding this line solved the problem

注:我没有修改application.html.rb文件



Answer 16:

Windwos的10

只要安装node.js中 ,并确保节点可执行文件路径变量。



Answer 17:

(在Windows 10 - Rails的4.2.5):我做这个解决:

1)安装nodes.js

2)安装咖啡脚本源宝石

gem 'coffee-script-source', '1.8.0'

3)在添加此行“ 配置\初始化\ assets.rb”

Rails.application.config.assets.precompile + =% w (application.css)


文章来源: Rails ExecJS::ProgramError in Pages#home?