Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7434269
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T09:48:31+00:00 2026-05-29T09:48:31+00:00

I am using Mongoid as my backend and I am in need to return

  • 0

I am using Mongoid as my backend and I am in need to return json with an “id” attribute instead of the default “_id” used by mongoid

for instance, I have now

[{
  "_id": "4f2d8b971773eb18e6000001",
  "name": "Scooter"
}, {
  "_id": "4f2d8d9f1773eb18fd000001",
  "name": "Coldplay"
}]

from a call to render:

  format.json { render :json => @groups, only:[:name, :_id] }

but need,

[{
  "id": "4f2d8b971773eb18e6000001",
  "name": "Scooter"
}, {
  "id": "4f2d8d9f1773eb18fd000001",
  "name": "Coldplay"
}]

Any shortcuts?

Thank you!!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-29T09:48:32+00:00Added an answer on May 29, 2026 at 9:48 am

    If you’re able to add an attribute accessor for _id called just id, then this should be easily solved by overriding as_json in your model.

    def id
      self._id
    end
    
    def as_json(options={})
      options.merge!(:except => :_id, :methods => :id)
      super(options)
    end
    

    Update: Made the override a bit more friendly to the parent method.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using Mongoid 2.4.5 on Rails 3.2.1 I have a Model Book that has_many :pages
I have a class User in Rails using Mongoid and Devise. I can't seem
I have recently been getting my feet wet in MongoDB using Mongoid w/ Rails
I was writing a Blog like application Using Rails3/Mongoid, and now trying to use
I'm using Mongoid, Devise and Rails 3.1. I have four models: Students, Teacher, Parents
I have a Rails 3.1 app, running on Ruby 1.9.2, Mongo 2.0.2, using Mongoid
I have two entities, projects and users. These are modeled in Rails using Mongoid
I have an existing project using mongoid, database_cleaner and rspec. I try to add
Using Mongoid, let's say I have the following classes: class Map include Mongoid::Document embeds_many
Using Mongoid. Unfortunately, Mongoid does not allow for selecting unique / distinct! Have gotten

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.