5

これまでのところ、私がやったことは次のとおりです。

  1. Capfile にアセットをロードしました: js はまだ動作しません http://guides.rubyonrails.org/asset_pipeline.html#precompiling-assets

  2. コーヒーレールをアセットからメインセクションに移動しました: まだ機能していません

    gem 'coffee-rails', '~> 3.2.1'

    group :assets do gem 'sass-rails', '~> 3.2.3' end

更新: 本番環境

SolidAdmin::Application.configure do # ここで指定された設定は、config/application.rb の設定よりも優先されます

  # Code is not reloaded between requests
  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
  Paperclip.options[:command_path] = "/usr/bin/"
  # 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 = false

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

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

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

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

  # Log the query plan for queries taking more than this (works
  # with SQLite, MySQL, and PostgreSQL)
  # config.active_record.auto_explain_threshold_in_seconds = 0.5
end

他のすべてはほとんどデフォルト/コメントアウトされています

4

4 に答える 4

5

編集: チャットで話し合った後、ページに jquery を 2 回含めることが問題でした。

あなたのページ (liquid-radio.com) を確認したところ、大きなエラーが表示されました:

<!DOCTYPE html>
<html>
<head>
  <title>liquid.radio</title>
  <link href="/assets/application-c9ed21e2be2e7bb9955d6a0d89357d16.css" media="all" rel="stylesheet" type="text/css" />
  <script src="/assets/application-09500810259983928e0b1b4d46b49071.js" type="text/javascript"></script>
  <meta content="authenticity_token" name="csrf-param" />
<meta content="MYdcXuDSzYg1qSHrRwx0y0VK5VmqhWmLLGiYSOX7pOI=" name="csrf-token" />
</head>
<body style="background: #FFF;">

<!DOCTYPE html>
<html>
    <head>

最初の部分が数回繰り返され、html が無効になります。

于 2013-07-22T13:00:07.903 に答える
5

修理済み!切り替え:

config.assets.compile = false

に:

config.assets.compile = true

今では動作します。

于 2013-07-21T18:24:06.523 に答える
3

Rails 4.2.6を使用していました。

エラーを修正するには、次を実行する必要がありました。

  1. rake assets:clean-これは私の資産をきれいにするためです
  2. application.jsファイルの問題を修正する必要がありました。これは主に、外部の js ライブラリをインポートする順序でした。
  3. rake assets:precompile- これはアセットをプリコンパイルするためのものです
  4. ではconfig/environments/production.rb、この行を変更する必要がありました

    config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?

    config.serve_static_files = true

これは、Rails アプリが、によって生成された静的ファイルを提供できるようになったことを意味します。assets:precompile

これを行ってアプリを再起動した後、すべてがうまくいきました!

于 2016-08-20T21:38:57.750 に答える