Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是新来的西纳特拉。
我目前在一个应该使用数组的项目上工作,
例如: ary = ['a','b','c']
ary = ['a','b','c']
将其转换为 HTML 表格(可能使用 .erb 文件)。
该表应具有与字符串一样多的单列(动态)。
例如:
我真的不知道如何做到这一点,我尝试了类似项目的代码,但没有奏效。我希望它甚至可以做到。
在控制器中做
get '/something' do @ary = ['a','b','c'] erb :'something' end
在名为某事的视图中,您可以执行
<table> <% @ary.each do |elem| %> <tr> <td> <%= elem %> </td> </tr> <% end %> </table>