ruby-on-rails – Rails 3 – 如何在视图中发表评论?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Rails 3 – 如何在视图中发表评论?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是Rails 3方式在视图中注释掉一行或多行代码?所以它不会出现在HTML源代码

解决方法

注释掉一行ob ruby​​代码使用
<%# code %>
or for multiple lines
<%
=begin
 your code
=end
%>

编辑:
这是一个在视图中注释掉一个循环的示例.
= begin和= end必须直接在行的开头.
没有空格或制表符.

<h1>Listing posts</h1>

<table>
  <tr>
    <th>Title</th>
    <th>Text</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<%
=begin 
%>
<%@posts.each do |post| %>
  <tr>
    <td><%= post.title %></td>
    <td><%= post.text %></td>
    <td><%= link_to 'Show',post %></td>
    <td><%= link_to 'Edit',edit_post_path(post) %></td>
    <td><%= link_to 'Destroy',post,:confirm => 'Are you sure?',:method => :delete %></td>
  </tr>
<% end %>
<%
=end
%>
</table>
原文链接:https://www.f2er.com/ruby/273277.html

猜你在找的Ruby相关文章