2024年8月26日
在 Rails 视图中添加 Ruby 代码的最流行方法是使用嵌入式 Ruby (ERB)。嵌入式 Ruby 的文件扩展名为 .html.erb,这些文件可以包含任意数量的常规 html 标记。
基本语法如下:
<ul>
<% @todo_items.each do |todo| %>
<li><%= todo.name %> : <%= todo.priority %></li>
<% end %>
</ul>
这将输出如下的 html:
<ul>
<li>Buy milk : Normal</li>
<li>Mow land : Urgent</li>
<li>Throw a ball : Normal</li>
<…