2

我在 erb(电子邮件模板)中显示重复的内容块,我想我会创建一个简单的类来代表每个块。

如果我手动渲染 erb,我尝试了类似的方法,但如果我尝试发送我抛出的电子邮件。

<%
class EmailBox
  attr_accessor :text, :textLink,
end
x = EmailBox.new
x.textLink = 'https://www.google.com/' 
x.text = 'blah'
@boxes = []
@boxes.push x
%>

<% @boxes.each do |row| %>
         <a style="text-decoration:none;color:#666;" href="<%=row.textLink%>"><%=row.text%></a>
<% end %>

我得到的错误是:

/Users/x/appname/app/views/clip_mailer/send_clip_with_destination.html.erb:205: class definition in method body
/usr/local/rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `module_eval'
/usr/local/rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:297:in `compile'
/usr/local/rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:244:in `block in compile!'
<internal:prelude>:10:in `synchronize'
/usr/local/rvm/gems/ruby-1.9.3-p392/gems/actionpack-3.2.13/lib/action_view/template.rb:232:in `compile!'

我在重复自己,但是当我通过在磁盘上打开模板并运行来手动渲染模板时,这工作得很好ERB.new(file).result(binding)

4

2 回答 2

1

据我所知,您不能在 erb 中定义类。即使可以,我也会质疑这种方法背后的设计逻辑 - 通常,您希望在数据和模板之间保持隔离墙。

综上所述,您可以使用返回列表或哈希等的方法完成类似的操作:

<% def get_data; return {:text => 'blah', :textLink => 'http://www.google.com'}; end %>
<%= get_data[:textLink] %>
于 2013-06-03T12:05:39.043 回答
0

有人回答“如果你真的想在模板中定义一个类,你可以使用一个结构......”然后删除它。我不知道是谁,但我收到了一封电子邮件,里面说了这么多。无论如何,这让我走上了一条结构之路,最终我找到了 OpenStruct。转换非常简单,需要的行数更少:

<%
x = OpenStruct.new
x.textLink = 'https://www.google.com/' 
x.text = 'blah'
@boxes = []
@boxes.push x
%>

<% @boxes.each do |row| %>
         <a style="text-decoration:none;color:#666;" href="<%=row.textLink%>"><%=row.text%></a>
<% end %>
于 2013-06-03T21:31:35.093 回答