你如何<%= post.name %>
链接到它自己的页面?
<% @posts.each do |post| %>
<tr>
<td><%= post.name %></td>
</tr>
<% end %>
类似于此代码的作用,但没有字符串'Show'
<td><%= link_to 'Show', post %></td>
我一直在想的是 php 是怎么做的,你把它包起来
<a href="<?php phpcode() ?>">
我怎样才能在红宝石中做类似的结果?