我试图在Rails 3模型中使用Sprockets的image_path方法.我已经尝试在我的模型中包含ActionView :: Helpers :: AssetTagHelper,并调用image_path,但这不起作用(未定义的局部变量或方法’config’).
有任何想法吗?
更新 – 这对我有用:
ActionController::Base.new.view_context.asset_path("image.png")
解决方法
我认为这是加载资产助手的标准方式:
ActionController::Base.helpers.asset_path("image.png")
这似乎比创建ActionController :: Base的新实例更好,并且要求视图上下文更为明确.