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?

【2日目】フロントエンジニアがRailsを習得するまで

Last updated at Posted at 2023-11-30

Railsチュートリアルを開始

1周目

1周目は読むだけで流れを掴んでいく。
また、Gitやデプロイ周りなどはスルーしていく。


1章 ゼロからデプロイまで

以下の流れで学習を進めるらしい。

  1. 始めは最小限のhelloアプリで各種セットアップを整える
  2. 少しだけ機能が増えたtoyアプリを体験
  3. 最後に本格的なWebアプリケーション『Sample App』を作成

2章 Toyアプリケーション

Model-View-Controller(MVC)

railsは大まかに以下のような構成で出来ている。

  • app
    • model : データベースとの通信を担当
    • view: 見た目の部分を担当
    • controller: リクエストを処理する担当

こんな感じ(railsチュートリアルより抜粋)

image.png


validates

modelsのファイルにあるvalidatesはcolumnのバリデーションを書けるみたい。
以下の例だとcontentは140以下のtextみたいな感じ。

image.png


Model同士の関連づけ

Userモデルは複数のMicropostsモデルと関連づけられる。

image.png

Micropostsモデルは単一のUserモデルに所有される。

image.png

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?