0
1

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.

【Rails】renderメソッドの引数のカッコの有無について

Posted at

#renderメソッドの引数にはカッコはつける?つけない?

結論から言うと、どちらでもOKです。
Rubyにおけるメソッドの呼び出しではカッコを省略することができます。

なので以下の2つはどちらの書き方でも問題ありません。

posts_controller.rb
render("posts/new")
posts_controller.rb
render "posts/new"

#####※ただし、複雑なコードを書く場合は、区切りの位置をわかりやすくする為にカッコをつけたほうがいいです。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?