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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:31:05+00:00 2026-05-18T20:31:05+00:00

In a controller method I am doing this: destination = Destination.new(params[:destination]) trip = Trip.find(params[:trip_id])

  • 0

In a controller method I am doing this:

    destination = Destination.new(params[:destination])

    trip = Trip.find(params[:trip_id])

    destination.city_id = params[:city_id]
    destination.trip_id = params[:trip_id]

    last_destrination = Destination.find(:last, :order => 'sort', :conditions => { :trip_id => params[:trip_id] })
    destination.sort = last_destrination ? last_destrination.sort.to_i + 1 : 1

    if trip.user_id == current_user.id and destination.save
        city = City.find(params[:city_id])

        render :json => [ 'destination' => destination, 'city' => city ]
    else
        render :status => 500
    end

Now I want to send the destination I just make along with the city associated with it. How the heck can I do that, as right now I get the following :

[
      {
            city: {
                  city: {
                      # name: "Fort Frances"
                      # latitude: 48.617
                      # created_at: "2010-12-23T16:04:00Z"
                      # updated_at: "2010-12-23T16:04:00Z"
                      # country_id: 43
                      # timezone: "-05:00"
                      # id: 951
                      # region_id: 34
                      # longitude: -93.417
                  }
            },
            destination: {
                  destination: {
                      # trip_id: 10
                      # created_at: "2010-12-23T21:24:27Z"
                      # updated_at: "2010-12-23T21:24:27Z"
                      # id: 29
                      # sort: 18
                      # city_id: 951
                  }
            }
      }
]

That all works fine except for the doubling up of array key names. destination.destination is no good. Any ideas?

  • 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-18T20:31:05+00:00Added an answer on May 18, 2026 at 8:31 pm
    render :json => [ destination, city ]
    

    –edit

    This should render a single object with destination and city keys:

    ActiveRecord::Base.include_root_in_json = false
    render :json => { :destination => destination, :city => city }
    

    That setting would probably be better in a separate initializer if its used throughout the application.

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

Sidebar

Related Questions

Given a controller method like: def show @model = Model.find(params[:id]) respond_to do |format| format.html
In my view controller's -viewDidLoad method, I call [myTextField becomeFirstResponder]; This works like a
Which method View() is called last in the System.Web.Mvc.Controller? Or should I override each
In my init I have: $contextSwitch = $this->_helper->getHelper('ForceContext'); $contextSwitch->addActionContext('favourite-listing', 'json')->initContext(); In my controller method
By my (likely meager) understanding, doing this in the middle of a method in
If you have a controller method like so: @expose(json) def artists(self, action=view,artist_id=None): artists=session.query(model.Artist).all() return
Given the following classes and controller action method: public School { public Int32 ID
I have a controller with an action method as follows: public class InventoryController :
Say I have a controller with an Index Method and a Update Method. After
I'm having troubles reading a Json result back from a controller method... I have

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.