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.

掲示板投稿機能の作成の確認ポイント

Posted at

自分用です!

掲示板作成時はアソシエーションを活用して、処理を短く記載していること、

・GOOD アソシエーションを活用
@board = current_user.boards.build(board_params)

・BAD 初期化した後に値を代入
@board = Board.new(board_params)
@board.user_id = current_user.id

・BAD 初期化する際のパラメータをmerge
Board.new(board_params.merge(user_id: current_user.id))

フォームのテキストエリアの入力幅はstyleで指定するのではなく、rows:で設定すること styleは個別のHTMLに直接記載しせずに、cssファイルから適用させる形式の方が管理しやすいため

・BAD styleで高さを指定して、入力幅を設定している
<%= f.text_area :body, class: 'form-control', style: 'height: 200px', row: 10 %>

・GOOD styleを使用せずに、rows:オプションで入力幅を設定している
<%= f.text_area :body, class: 'form-control', rows: 10 %>

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?