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 6112107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:42:25+00:00 2026-05-23T14:42:25+00:00

In Rails 3.0.8 the json contains a root element with your model name. For

  • 0

In Rails 3.0.8 the json contains a root element with your model name. For example my Location model.

[
{
location: {
city: San Diego
name: Mission Valley YMCA Krause Family Skatepark
pads_required: 0
country: United States

And the mapping provider looked directly for the location object.

RKObjectMapping* locationMapping = [RKObjectMapping mappingForClass:[RKLocation class]];   
[locationMapping mapKeyPath:@"id" toAttribute:@"locationId"];
...
[objectManager.mappingProvider setMapping:locationMapping forKeyPath:@"location"];

Now when you upgrade to rails 3.1.0 the root node “location” is now removed by default and I’m not sure how to configure the mapping provider without it? I tried nil and looked for alternative methods but was unsuccessful.

Do you know how to map this? Please help!

[
{
   city: San Diego
   name: Mission Valley YMCA Krause Family Skatepark
   pads_required: 0
   country: United States
  • 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-23T14:42:25+00:00Added an answer on May 23, 2026 at 2:42 pm

    From the RestKit side, I don’t know, but from this topic it looks like you can get the json back to what RestKit expects by doing:

    class Location < ActiveRecord::Base
      self.include_root_in_json = true
    end
    

    Edit:
    For completeness, here’s how you’d do it with RestKit:

    RKObjectMapping* locationMapping = [RKObjectMapping mappingForClass:[RKLocation class]];   
    [locationMapping mapKeyPath:@"id" toAttribute:@"locationId"];
    ...
    [objectManager.mappingProvider addObjectMapping:locationMapping];
    

    And then calling the mapper later:

    RKObjectMapping* locationMapping = [[RKObjectManager sharedManager].mappingProvider objectMappingForClass:[RKLocation class]];
    [[RKObjectManager sharedManager] loadObjectsAtResourcePath:@"/locations" objectMapping:locationMapping delegate:self];
    

    And then you’d handle the objects in RKObjectLoader delegate methods.

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

Sidebar

Related Questions

I'm trying to convert an ActiveRecord model to JSON in Rails, and while the
I've got a model creation form in rails which I also have returning JSON
I want to override the JSON MIME type (application/json) in Rails to (text/x-json). I
I'm trying to make an API for my rails application using JSON responses to
OK, I'm using a JSON-enabled Rails web-service to provide data to an iPhone application.
I have an app running Rails 2.3.5 that has a JSON API for much
Rails uses the concept of migrations to deal with model changes using the ActiveRecord
Say that a Rails app has a Car and an Order model. The Car
So far I've found two ways for request.format.json? to be true in Rails (i.e.
I'm using JSON to communicate between my rails app and iOS via RestKit (Thanks

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.