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

  • Home
  • SEARCH
  • 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 6472891
In Process

The Archive Base Latest Questions

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

I have the following object relations between my three models (I am not using

  • 0

I have the following object relations between my three models (I am not using Backbone-relational… this is just describing the underlying structure of my data) :

Person has many Cars
Car has many Appraisals.

I have a single method to retrieve a Person, which brings along all the Cars and the Appraisals of those Cars. It looks like this:

{id: 1,
 name: John Doe,
 cars: [
        {id: 3, make: 'Porsche',
         appraisals: [
                        {id: 27, amount: '45000', date: '01/01/2011'}
                     ]
        },

        {id: 4, make: 'Buick', appraisals: []}
  ]
}

When I create a new Person I pass in this entire mess. In my Person’s initialize function I do this:

...
initialize: function() {
  //Cars => Collection of Car
  this.cars = new Cars();
  _.each(this.get('cars'), function(car) {
    this.cars.add(new Car(car));
  });
  this.unset('cars');
}
...

And in my Car initialize function I do something similar:

...
initialize: function() {
  //Appraisals => Collection of Appraisal
  this.appraisals = new Appraisals();
  _.each(this.get('appraisals'), function(appraisal) {
    this.appraisals.add(new Appraisal(appraisal));
  });
  this.unset('appraisals');
}
...

I also have to override the toJSON function for Person and Car models.

Is there anything wrong with this? I’ve seen it suggested elsewhere to make nested collections properties rather than attributes, and my experience confirms that is easier, but I’m wondering if I am breaking some rules or doing something dumb here.

  • 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-25T06:24:00+00:00Added an answer on May 25, 2026 at 6:24 am

    I answered a similar question here: backbone.js – getting extra data along with the request

    In the answer that I provided, it was more about a collection owning a model association — a has one, basically.

    I think a Person should have a CarsList containing Car models. A Car should have an AppraisalsList containing Appraisal models. You would probably override the parse and toJSON functions of Person and Car as needed.

    I would definitely avoid using attributes for associations. The unset functions in the above examples are a bad smell to me.

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

Sidebar

Related Questions

Suppose I have the following objects (one table per object) with this relations: A
I have following object structure, deseralized from XML (WS): <ns2:Category> <ns2:CategoryId>800003</ns2:CategoryId> <ns2:CategoryName>Name1</ns2:CategoryName> <ns2:Categories> <ns2:Category>
We have the following object int [,] oGridCells; which is only used with a
I have the following File object pointing to a directory via symbolic link, File
I have the following JSON object: { response: { status: 200 }, messages: [
say I have the following json object; {'fname':'john', 'lname':'Locke'} and the following text boxes
If I have the following domain object: public class Customer { public virtual Guid
I have a NSArrayController with following Object: @interface AdressCard : NSObject <NSCoding> { NSString*
I have the following method: public object[] GetEventsByUser(DateTime start, DateTime end, string fullUrl) The
I have the following code (changed object names, so syntax/spelling errors ignore). public class

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.