标签: ruby-on-rails ruby-on-rails-3 ruby-on-rails-3.2 asset-pipeline sprockets
我正在尝试在Rails 3模型中使用Sprockets的image_path方法。我尝试在我的模型中包含ActionView::Helpers::AssetTagHelper并调用image_path,但这不起作用(undefined local variable or method 'config')。
ActionView::Helpers::AssetTagHelper
undefined local variable or method 'config'
有什么想法吗?
更新 - 这对我有用:
ActionController::Base.new.view_context.asset_path("image.png")