开发者

Rails console - use image_tag method

开发者 https://www.devze.com 2023-01-23 19:25 出处:网络
How can I execute a image_tag me开发者_C百科thod in a Rails console Run the console $ rails c Load helpers

How can I execute a image_tag me开发者_C百科thod in a Rails console

  1. Run the console $ rails c

  2. Load helpers

    include ActionView::Helpers

  3. Execute the command

    image_tag('test.png')

I got a strange error.

Rails console - use image_tag method

Please help!


Not sure why you're getting that error. It is strange.

But the Rails Console exposes the helper methods through the helper variable. So this should work:

helper.image_tag('test.png')


OK... I found the solution. The error is showing only in Rails 3 but I fixed it by setting the

  config.action_controller.asset_host = "http://..."
  config.action_mailer.asset_host = "http://..."

in my environemnt file (e.g. development.rb). Unbelievable!

This functionality is now part of a plugin https://github.com/xpepermint/js_erb.

0

精彩评论

暂无评论...
验证码 换一张
取 消