Rails ExecJS :: Pages错误在页面#home?

时间:2015-02-09 23:35:57

标签: ruby-on-rails windows turbolinks execjs

启动一个新的应用程序,当我创建一个控制器页面回家并尝试转到本地主机:3000 / pages / home时,我收到以下错误:

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 gem从2.3.0降级到2.2.2,认为更新版本的turbolinks gem导致我的应用程序出错;显然这对我没用。

有关我的应用可能出现什么问题的任何建议吗?

18 个答案:

答案 0 :(得分:141)

/app/views/layouts/application.html.erb 5 6 行,将第一个参数从application更改为default

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

答案 1 :(得分:59)

如果你在WIndows中运行,那么coffee-script-source 1.9.0在windows上不起作用。

将其更改为以前的版本,将此行添加到您的Gemfile:

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

然后重新安装捆绑包,调整新Gem版本的依赖关系:

bundle update coffee-script-source

答案 2 :(得分:24)

我已经有一段时间没遇到这个问题了,并且已经完成了这个帖子中的所有答案并发现它们都不成功,我已经决定添加我的解决方案,希望它有助于未来的Rails用户。

我已完成此主题中的所有操作 - 将application更改为default允许它无错误地通过,但是一旦您实际尝试使用任何JavaScript,就会显示错误关于无法找到default.js。我已经安装了NodeJS并将其放在我的Ruby / bin文件夹中。这没什么,所以我把它删除了。

你确实可以暂时解决这个问题&#34;用application&#34;切换default解决方案,但它是非常短期的。如果您无意通过Rails资产管道为您的应用添加样式或添加JavaScript,则此解决方案可能适合您。我自己没有测试过,但我想在application.html头文件中包含JavaScript和样式表可能会有效。但是你失去了Rails的魔力。

我在Windows 8,Windows 10和Ubuntu平台上遇到过这个问题。

对我而言,唯一解决它的问题仍然是渲染JavaScript和样式表,首先将样式表更改为applicationapplication.css(即使您正在使用Sass / SCSS) ,因为它仍然编译成css)和application.js的JavaScript链接。完成后,请转到/assets/javascripts/application.js文件,然后删除//前面的//= require turbolinks

现在您的应用程序应该可以正常工作。

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

答案 3 :(得分:19)

在windows coffee-script source&gt; = 1.9.0中

无法正常工作。 只需添加Gemfile

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

并运行

bundle update coffee-script-source

答案 4 :(得分:6)

只需在本地计算机上安装NodeJS(确保将相应的条目添加到PATH中)并添加

gem 'execjs'

进入 Gemfile

答案 5 :(得分:5)

在Windows 10 1511版上,添加   gem&#39; coffee-script-source&#39;,&#39; 1.8.0&#39; 到我的gemfile然后   ruby bin \ bundle update coffee-script-source 从项目目录工作。 注意:之前被替换的咖啡脚本源版本是1.10.0

答案 6 :(得分:5)

(在Windows 8上)

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

答案 7 :(得分:3)

我也有这个问题。 我进入Sublime进入我的项目文件夹。然后单击应用程序文件夹,查看文件夹,布局,单击application.html.erb并更改第5行和第6行&#39; application&#39;到&#39;默认&#39;工作得很好。感谢发布您的问题,谢谢那些回答!

我只想添加,我通过Sublime进入。我刚刚学习,我不知道如何访问.erb文件。只是想帮助别人。

答案 8 :(得分:1)

终于让它松了一口气。 即使我不确定是什么让它起作用。 尝试了以下所有方面。 1)安装了node.js,将coffescript npm添加到它,然后重新启动。 2)为exec.js添加了gem并修改了runtime.rb,使其无法使用默认的Windows脚本文件。 有关如何执行此操作,请参阅此链接: [https://github.com/sstephenson/execjs/issues/81][1] 3)为了安全起见,还添加了rubyracer宝石 gem&#39; therubyracer&#39;,平台:: ruby​​

总之添加了两个脚本引擎,nodejs和rubyracer以及添加的execjs,以便它选择最好的脚本引擎,但是无法选择windows scrpting引擎。

我想在添加execjs后,单独安装nodejs可能会有效。但是我没有重启(发布nodejs安装)并尝试了所有其他的事情。

答案 9 :(得分:1)

我尝试了上面的所有解决方案,唯一正常工作的是安装node.js,将目录添加到&#39;路径&#39; Windows中的环境变量(在“高级系统设置”,“环境变量”,“路径”中找到),然后重新启动计算机和服务器。 我认为coffee-script-source的更高版本必须依赖于node.js以及其他gem。没有使用coffee-script-source我有相同的错误。

更改&#39;应用程序&#39;到&#39;默认&#39;虽然是一个糟糕的解决方案,因为它只是删除了所有应用程序的CSS样式。我完全不推荐它。

答案 10 :(得分:1)

我刚刚更改了&#39; application&#39;到&#39; default&#39;在第5和第6行,并解决。 /app/views/layouts/application.html.erb

FROM:

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

TO:

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

答案 11 :(得分:0)

您需要阅读rails页面中的说明。你需要ExecJS gem和一些JS运行时。

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

2.-获取ExecJS gem-&gt; gem install execjs

<强>阐释:

来自rails页面:

“编译CoffeeScript和JavaScript资源压缩需要您的系统上有一个JavaScript运行时,如果没有运行时,您将在资产编译期间看到execjs错误。通常Mac OS X和Windows都安装了JavaScript运行时。 Rails将zeubyracer gem添加到新应用程序的注释行中生成的Gemfile中,如果需要,可以取消注释.therubyrhino是JRuby用户的推荐运行时,默认情况下添加到JRuby下生成的应用程序中的Gemfile。您可以调查ExecJS支持的所有运行时。“

来自ExecJS的hte 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 Readme GitHub

答案 12 :(得分:0)

我们只应在/app/views/layouts/application.html.erb中将第6行从application更改为default。更改第5行将导致样式表无法加载。

答案 13 :(得分:0)

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

所以在app \ views \ layouts \ 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' %>

并取消注释app \ assets \ javascripts \ application.js

中的第15行
require turbolinks

并将其复制到文件末尾的app \ assets \ stylesheets \ application.css

从此你的css和js将会运行

答案 14 :(得分:0)

我在Rails 5.1.6上。我遇到过同样的问题。按照上面的建议,我降解了Coffee-script-source的宝石,从而解决了这个问题。

# 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文件

答案 15 :(得分:0)

Windwos 10

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

答案 16 :(得分:0)

(在Windows 10-Rails 4.2.5上):我通过这样做解决了问题:

1)安装 nodes.js

2)安装 coffe-script-source 宝石

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

3)将此行添加到“ config \ initializers \ assets.rb

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

答案 17 :(得分:0)

对于Windows用户,您可以设置execjs运行时路径到Node

config/boot.rb

ENV['EXECJS_RUNTIME'] = 'Node'