2
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 1 year has passed since last update.

RubyonRailsチュートリアル:実践メモ【第三章】

Posted at

Ruby on Rails チュートリアル(Webサービス開発が学べる学習サービス)に従って、MVCフレームワークアプリケーションを作成していく。

使用ツール
AWS Cloud9

コントローラの新規作成

コントローラの新規作成には、generateスクリプトを使用する。

$ rails generate controller ControllerName アクション名(省略可)

※rails generateはrails gという短縮形でもOK

Railsのアクションは、コントローラの中に配置する。

rails generate実行時にキャメルケースで記述を行うと、ファイルのコントローラ名がスネークケースで自動生成で登録される。
↓↓↓
StaticPagesstatic_pages_controller.rb

Rubynにはクラス名にキャメルケースを使う慣習と、ファイル名をスネークケースで記述する慣習がある。



参照:RubyonRailsチュートリアル

2
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
2
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?