0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

chat-spaceを作ろう②

Posted at

TOPページを作成する

コントローラーを作成し、ルートを設定する

ターミナル
rails g controller messages
messagesコントロラーとviews/messagesディレクトリが作成される
controller/messages_controller.rb
def index
end
topページ用のindexアクションを定義する
routes.rb
root "messages#index"
とりあえずTOPページを表示する為のルートを設定する

ビューファイルを作成する

views/messagesディレクトリ内に以下のファイルを作成する

  • index.html.haml (indexアクションに対応したビューファイル)
  • _side_bar.html.haml (TOPページの左サイド部分)
  • _main_chat.html.haml (TOPページのメイン部分)
views/messages/index.html.haml
.wrapper
side_barとmain_chatの要素を囲むコンテナ特に意味はない
  = render "shared/side_bar.html.haml"
  = render "main_chat.html.haml"
  部分テンプレートを呼び出す

今日ここまで
次回はアイコンを使用できる様にします
見本サイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?