0

1つのレール3.2アプリで、これを行っています。

def url_options
  {
    :p1 => value1,
    :p2 => value2
  }.merge(super)
end

これは正常に動作します。アセット パイプラインを除きます。css、js、画像など、すべてのアプリの URL にこれらのパラメーターを追加する必要があります。

別のRails 3.2アプリで。奇妙な理由で私は無視します。同じ url_options は機能しませんでした。アセットだけでなく、まったく機能しませんでした。代わりに次のことをしなければなりませんでした。

Rails.application.routes.default_url_options[:p1] = value1

これは資産に対しても機能しません。私は困惑しています。誰かが解決策を知っているでしょうか?

ありがとう

4

1 に答える 1

0

どうぞ!Sprockets にモンキー パッチを適用して、URL オプション ヘルパーを含めることができます...

module Sprockets
  module Helpers
    module RailsHelper
      def asset_path_with_url_options(source, options = {})
        uri = Addressable::URI.parse(asset_path_without_url_options(source, options))
        default_url_options = url_options.dup.delete_if { |k,v|
          [:host, :port, :protocol, :_path_segments, :script_name].include?(k)
        }
        uri.query_values = default_url_options.merge(uri.query_values || {})
        uri.to_s
      end

      alias_method_chain :asset_path, :url_options
      alias_method :path_to_asset, :asset_path_with_url_options # aliased to avoid conflicts with an asset_path named route
    end
  end
end

class ApplicationController < ActionController::Base
  protect_from_forgery

  # anything using link_to, url_for, etc. uses this automatically.
  def url_options
    {
      :k1 => v1,
      :k2 => v2
    }.merge(super)
  end

end
于 2013-06-19T21:37:32.403 に答える