Rails 3.2 +表格标签+背景属性+ url_for

时间:2013-01-27 12:38:00

标签: ruby-on-rails-3

在/config/environment/development.rb中:

config.action_mailer.asset_host = "http://192.155.90.155:3000"

在我的邮件正文中,我希望看到:

<table background="http://192.155.90.155:3000/assets/fb.png">

<table background="<%= url_for('assets/bg.jpg', :only_path => false) %>">给了我错误。

<table background="<%= url_for('assets/bg.jpg') %>">给了我意想不到的结果:

<table background="assets/fb.png">

任何帮助?

1 个答案:

答案 0 :(得分:0)

我找到了解决方案:

使用<table background="<%= asset_path 'bg.jpg' %>">

而不是<table background="<%= url_for('assets/bg.jpg') %>">