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>