3
5

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 5 years have passed since last update.

rails コロンの意味

Posted at

Railsのコロンの意味(書き方)がわからなかったので調べた。


Rubyで使われるコロンの意味を調べてみた
http://blog.naoshihoshi.com/entry/2016/11/11/083000

Ruby on Rails 入門のための知識 1(シンボルとハッシュ)
http://ruby-newbie.hatenablog.com/entry/2012/12/30/201905


シンボルは同じものを参照してるから文字列で指定より、早いってことみたい。

書き方は、

{:aaa => "bbb"}
{aaa: "bbb"}

が同じ、ってことみたい。(矢印を省略できる?)

つまり
@contents = Content.all.order(created_at: :desc)

@contents = Content.all.order("created_at" => "desc")
とも書ける。

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?