轨道 3.2 + 表标记 + 背景属性 + url_for



In/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) %>">给了我 en 错误。

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

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

有什么帮助吗?

我已经找到了解决方案:

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

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

相关内容

  • 没有找到相关文章