0

Rails アプリはすべての js ファイルを使用して localhost で動作していますが、heroku プロダクションで実行すると、js ファイルが読み込まれませんか?

config/application.rb config.cache_classes = true

# Full error reports are disabled and caching is turned on
config.consider_all_requests_local       = false
config.action_controller.perform_caching = true

# Disable Rails's static asset server (Apache or nginx will already do this)
config.serve_static_assets = false

# Compress JavaScripts and CSS
config.assets.compress = true

# Don't fallback to assets pipeline if a precompiled asset is missed
config.assets.compile = true

# Generate digests for assets URLs
config.assets.digest = true

# Defaults to nil and saved in location specified by config.assets.prefix
# config.assets.manifest = YOUR_PATH

# Specifies the header that your server uses for sending files
# config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
# config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx

# Force all access to the app over SSL, use Strict-Transport-Security, and use secure
cookies.
# config.force_ssl = true

# See everything in the log (default is :info)
# config.log_level = :debug

# Prepend all log lines with the following tags
# config.log_tags = [ :subdomain, :uuid ]

# Use a different logger for distributed setups
# config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)

# Use a different cache store in production
# config.cache_store = :mem_cache_store

# Enable serving of images, stylesheets, and JavaScripts from an asset server
# config.action_controller.asset_host = "http://assets.example.com"

# Precompile additional assets (application.js, application.css, and all non-JS/CSS are
already added)
# config.assets.precompile += %w( search.js )

# Disable delivery errors, bad email addresses will be ignored
# config.action_mailer.raise_delivery_errors = false

# Enable threaded mode
# config.threadsafe!

# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
# the I18n.default_locale when a translation can not be found)
config.i18n.fallbacks = true

config.assets.debug = false
# Send deprecation notices to registered listeners
config.active_support.deprecation = :notify

config/enviornment.rb

config.whiny_nils = true

# Show full error reports and disable caching
config.consider_all_requests_local       = true
config.action_controller.perform_caching = false

# Don't care if the mailer can't send
config.action_mailer.raise_delivery_errors = false

# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log

# Only use best-standards-support built into browsers
config.action_dispatch.best_standards_support = :builtin


# Do not compress assets
config.assets.compress = false

# Expands the lines which load the assets
config.assets.debug = true

アプリケーション.rb

config.assets.enabled = true

アプリケーション.js

//= require jquery

//= require jquery_ujs

//= require jquery-ui

//= require twitter/bootstrap

//= require_tree .

宝石ファイル

source 'https://rubygems.org'

gem 'rails', '3.2.11'
gem 'rest-client' , :require => 'rest_client'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#gem 'twitter-bootstrap-rails'
gem 'execjs'
gem 'therubyracer'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem "less-rails"
gem 'sass-rails',   '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'twitter-bootstrap-rails'
 # See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'

end
gem "paperclip", "~> 3.0"
gem 'jquery-rails'

だから私は私のhtmlヘッドタグでherokuを実行すると含まれています

<head>
<title>Admin70mmiq</title>
<link type="text/css" rel="stylesheet" media="all" href="/assets/application- 
 7bf1caf8d9df45f41b2e2de526e0a07e.css">

<script type="text/javascript" src="/assets/application-
561ebefa444229c0b9721488348e73eb.js">
<meta name="csrf-param" content="authenticity_token">
<meta name="csrf-token" content="zadsH75r/3ZNXRTijXuw7LJDNAflL/9J3DzDZJG9yi4=">
</head>
4

2 に答える 2

0

アセット パイプラインは、すべての js ファイルを application.js という 1 つのファイルに圧縮します。このファイルは、HTML で次のように表示されます。/assets/application-561ebefa444229c0b9721488348e73eb.js

于 2013-05-20T08:17:17.810 に答える