看板
[ Ruby ]
討論串[問題] includes or joins???
共 5 篇文章
內容預覽:
環境:. Ruby 1.9.2, Rails 3.1.0. 狀況:. Migration:. User(name, laptop_id). Laptop(serial, color, lcd_size). Model:. User Model => belongs_to :laptop. Lapto
(還有291個字)
內容預覽:
提供一個笨方法. u = User.first. u.attributes.merge('laptop' => u.laptop.attributes).to_json. or. l = Laptop.first. l.attributes.merge('users' => l.users.map(
(還有150個字)