「Ruby/rails/helloworld」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→コントローラー作成) |
(→ビュー作成) |
||
行17: | 行17: | ||
==ビュー作成== | ==ビュー作成== | ||
− | app/ | + | app/views/test/hello.html.erb |
− | << | + | <pre> |
+ | <h1>Test#hello</h1> | ||
+ | <p>Find me in app/views/test/hello.html.erb</p> | ||
+ | </pre> |
2017年11月3日 (金) 21:30時点における版
プロジェクト作成
rails new helloworld
プロジェクト作成(mysqlを使う場合はこちら
rails new helloworld -d mysql
コントローラー作成
rails generate controller test hello
testはコントローラー名、helloはアクション名、ルータが追記(configs/routes.rb)
アクション作成
app/controllers/test_controller.rb
class TestController < ApplicationController def hello end end
ビュー作成
app/views/test/hello.html.erb
<h1>Test#hello</h1> <p>Find me in app/views/test/hello.html.erb</p>