Rails 的 joins 中 select 的欄位不會在 console 中顯示
WriterShelf™ is a unique multiple pen name blogging and forum platform. Protect relationships and your privacy. Take your writing in new directions. ** Join WriterShelf**
WriterShelf™ is an open writing platform. The views, information and opinions in this article are those of the author.
Like
or Dislike
About the Author
很久以前就是個「寫程式的」,其實,什麼程式都不熟⋯⋯
就,這會一點點,那會一點點⋯⋯
More to explore
寫網頁,少不了要用上 joins,在 rails 中,沒指明,joins 就是 inner joins,也就是交集,這個很好用,特別是配合上 select,更可以把指定的兩個 tables 中的欄位帶入變數中。 比較討厭的是,如果各位跟我一樣,喜歡用 rails c 中驗證 SQL,conole 並不會顯示出來,舉例來說:
test = User.joins(:blog).select('user.id, user.name, blog.title')
這時用 console 執行後,卻會顯示如此:
irb(main):xx:0> User Load (0.9ms) SELECT users.id,users.name,blog.title FROM "users" INNER JOIN "blog" ON "blog"."user_id" = "users"."id"
=> #<ActiveRecord::Relation [#<User id: 1, name: "Andy">]>
很奇怪的,明明有指定 blog.title 為什麼怎麼試就是沒有顯示出來?
其實是有的,只是 rails console 沒顯示,我也不知道為什麼,照道理應該要,我想任何平台總有些不足的,來在 rails c 中驗證一下:
irb(main):xx:0> test.first.title
=> "第一筆 blog 的 title"
確定有,只是 console 沒顯示!
還有一個常用的,就是當兩個 joins 的 table 都有一樣的名稱時,怎麼指定?就用個 as:
User.joins(:blog).select('user.id, user.name, blog.title, blog.id as blog_id')
很簡單吧,如果要把所有的 columns 都用 select 帶入,就是:user.*,只是,真有必要嗎?有時太懶就要都用一些記憶體,一笑!