3

実行するとUser.only(:name).all、またはそのクエリのバリアントが何であれ、次のようになります。

[#<User _id: 52003fb8487874985b
000003, created_at: nil, updated_at: nil, role_ids: nil, name: "Tom Amfeagfhbdge Bowersman", usernam
e: nil, fb_id: nil, fb_token: nil, email: nil, encrypted_password: nil, reset_password_token: nil, r
eset_password_sent_at: nil, remember_created_at: nil, sign_in_count: nil, current_sign_in_at: nil, l
ast_sign_in_at: nil, current_sign_in_ip: nil, last_sign_in_ip: nil>,  
 #<User _id: 5200405a487874fb550
00004, created_at: nil, updated_at: nil, role_ids: nil, name: "Carol Amfdheibbjbf Sadanwitz", userna
me: nil, fb_id: nil, fb_token: nil, email: nil, encrypted_password: nil, reset_password_token: nil,
reset_password_sent_at: nil, remember_created_at: nil, sign_in_count: nil, current_sign_in_at: nil,
last_sign_in_at: nil, current_sign_in_ip: nil, last_sign_in_ip: nil>,  
 #<User _id: 520040d14878746fe5
000005, created_at: nil, updated_at: nil, role_ids: nil, name: "Tom Amfdidheeidd Yangson", username:
 nil, fb_id: nil, fb_token: nil, email: nil, encrypted_password: nil, reset_password_token: nil, res
et_password_sent_at: nil, remember_created_at: nil, sign_in_count: nil, current_sign_in_at: nil, las
t_sign_in_at: nil, current_sign_in_ip: nil, last_sign_in_ip: nil>]

唯一の関数のパラメーターを除いて、文書内のすべてのフィールドが nil 値を返します。

私は次のような結果を得たいと思っています:

"data": [
  {
    "id": "5008484"
  },
  {
    "id": "47402727"
  },
  {
    "id": "500154435"
  },
  {
    "id": "500598450"
  },
  {
    "id": "500655911"
  },
  {
    "id": "500666528"
  },
  {
    "id": "500700148"
  },
  {
    "id": "500973616"
  },
  {
    "id": "501130485"
  },
  {
    "id": "501254060"
  }]  

「ID」の代わりに「名前」

4

2 に答える 2

2

あなたはこのようにすることができます

{data: User.only(:name).all.map(&:attributes)}

于 2013-08-07T05:02:00.657 に答える