📄 index.rhtml
字号:
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -