2021-03-14から1日間の記事一覧

HTMLにおける表作成<table>タグ

表について ↓表の例 名前 年齢 趣味 佐藤 34 囲碁 石塚 30 料理 ちはる 1 お絵かき ↓表のコード <table width="200"> ※表全体の幅を200ピクセルに設定 <thead style="text-align: center;"> ※表見出しを中央寄せに設定 <tr bgcolor="yellow"> ※表見出しの背景を黄色に設定 <th scope="col" width="30%">名前</th> ※幅を全体の30%に設定 <th scope="col" width="20%">年齢</th> ※ 20% <th scope="col" width="50%">…</th></tr></thead></table>

orderメソッド

orderメソッドとは データベスから取得した値を任意の順に並び替えるメソッド index機能で使用 orderメソッドの使い方 モデル名.order("並び替えたいカラム名") <例> User.order("name") User.order(:name) →Userモデルのnameカラムを昇順で並び替え(デフ…