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?

More than 3 years have passed since last update.

新規登録画面か編集画面かにより、ビュー表示を変更する方法

Last updated at Posted at 2020-11-21

ビュー作成時、新規登録画面と編集画面のレイアウトがほぼ同じになることはよくあると思います。

その場合、「_form.htm.erb」などで共通フォームを作成し、同時に編集をかけれるようにするかと思います。

ただ、ボタン名が新規の時は「登録する」、編集の時は「編集する」といった細かい所が異なる時があります。

その時は、以下のような記述をします。(itemモデルのビュー編集とします)

_form.htm.erb
    <% if request.path_info == new_item_path %>
      <%= f.submit "記録する" %>
    <% else %>
      <%= f.submit "編集する" %>
    <% end %>

このように記述をすることで、新規のリクエストの時は「登録する」、それ以外(編集リクエストの時)は、「編集する」と表示されます。

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?