ruby-on-rails – AssetTagHelper :: image_path外部视图

据推测,ActionController :: Base.helpers就像一个代理,用于访问视图外的助手.然而,那里定义的许多方法依赖于控制器变量,我无法成功调用
ActionController::Base.helpers.image_path("my_image.png")
>> TypeError Exception: can't convert nil into String

在源头挖掘我看到compute_asset_host方法试图访问config.asset_host但是配置为nil.

如何从外部视图成功调用image_path?

解决方法

使用view_context访问视图中可用的辅助方法.

您可以从控制器中调用image_path.

view_context.image_path "my_image.png"

相关文章

以下代码导致我的问题: class Foo def initialize(n=0) @n = n end attr_accessor :n d...
这是我的spec文件,当为上下文添加测试“而不是可单独更新用户余额”时,我得到以下错误. require 's...
我有一个拦截器:DevelopmentMailInterceptor和一个启动拦截器的inititializer setup_mail.rb. 但我想将...
例如,如果我有YAML文件 en: questions: new: 'New Question' other: recent: ...
我听说在RSpec中避免它,let,let !,指定,之前和主题是最佳做法. 关于让,让!之前,如果不使用这些,我该如...
我在Rails中使用MongoDB和mongo_mapper gem,项目足够大.有什么办法可以将数据从Mongoid迁移到 Postgres...