index.rhtml

来自「ruby on rails 网站源码,可以自由下载此源码」· RHTML 代码 · 共 22 行

RHTML
22
字号
<h1>Listing products</h1><table>  <tr>    <th>Name</th>    <th>Category</th>  </tr>  <% for product in @products %>  <tr>    <td><%=h product.name %></td>    <td><%=h product.category_id %></td>    <td><%= link_to 'Show', product_path(product) %></td>    <td><%= link_to 'Edit', edit_product_path(product) %></td>    <td><%= link_to 'Destroy', product_path(product), :confirm => 'Are you sure?', :method => :delete %></td>  </tr><% end %></table><br /><%= link_to 'New product', new_product_path %>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?