동적 페이지 만들기

3368 단어 Rails
아래 페이지를 참조하여 Home 페이지를 미리 만듭니다.
https://qiita.com/classe729/items/a7c3bbafb58d421bd586
About 페이지의 동작을 추가합니다.
우선 다음과 같이 수정한다.
app/controllers/static_pages_controller.rb
class StaticPagesController < ApplicationController

  def home
  end

  def help
  end

  def about
  end
end
About 페이지의 전송 목적지를 추가합니다.
app/views/static_pages/about.html.erb
<h1>About</h1>
<p>
  <a href="https://railstutorial.jp/">Ruby on Rails Tutorial</a>
  is a <a href="https://railstutorial.jp/#ebook">book</a> and
  <a href="https://railstutorial.jp/#screencast">screencast</a>
  to teach web development with
  <a href="http://rubyonrails.org/">Ruby on Rails</a>.
  This is the sample application for the tutorial.
</p>
http://XXX.XXX.XXX.XXX:3000/static_pages/about
페이지에 액세스하면 다음 페이지를 내보냅니다.

다음에도 연락처 페이지를 만들겠습니다.
app/views/static_pages/contact.html.erb
<% provide(:title, "Contact") %>
<h1>Contact</h1>
<p>
  Contact the Ruby on Rails Tutorial about the sample app at the
  <a href="http://www.railstutorial.org/#contact">contact page</a>.
</p>

좋은 웹페이지 즐겨찾기