SpringBoot Railsからの移行処理


1.Railsで掲示板を作ってみる

③RailsRoute/app/views/webnotes/new.html.erbを以下の通り修正します。

<h1>掲示板投稿</h1>
<%= render 'form', webnote: @webnote %>
<%= link_to '戻る', webnotes_path %>

④RailsRoute/app/views/webnotes/edit.html.erbを以下の通り修正します。

<h1>掲示板修正</h1>
<%= render 'form', webnote: @webnote %>
<%= link_to '戻る', webnotes_path %>

⑤RailsRoute/app/views/webnotes/show.html.erbを以下の通り修正します。

<style>
.title {
    font-size: 17px;
    font-weight: bold;
    color: #2e82c1;
}
</style>
<p id="notice"><%= notice %></p>
<p class="title">タイトル</p>
<p><%= @webnote.title %></p>
<p class="title">内容</p>
<p><%= @webnote.content %></p>
<p class="title">作成者</p>
<p><%= @webnote.create_user %></p>
<%= link_to '編集', edit_webnote_path(@webnote) %> |
<%= link_to '戻る', webnotes_path %>