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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T05:24:43+00:00 2026-06-11T05:24:43+00:00

Suppose there are 2 Collections, representing respectively /api/page/1 and /api/page/2 ; is there anyway

  • 0

Suppose there are 2 Collections, representing respectively /api/page/1 and /api/page/2; is there anyway (through Underscore, for example) to merge these 2 Collections into a new, single Collection?

  • 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-06-11T05:24:45+00:00Added an answer on June 11, 2026 at 5:24 am

    Option 1

    If you haven’t fetched the collection yet, you can fetch the first one, then fetch the second one with the {add : true} flag and the second one will be merged into the first one:

    collection.fetch({data : {page : 2});
    => [{id: 1, article : "..."}, {id: 2, article : "..."}];
    collection.fetch({data : {page : 2}, add : true });
    => [{id: 1, article : "..."}, {id: 2, article : "..."}, {id: 3, article : "..."}];
    

    Option 2

    If you’ve already fetched the collections and have them stored in two variables, you can just add all contents of the second collection into the first one:

    collection1.add(collection2.toJSON());
    

    This options suffers from the fact that the first collection will fire the “add” event when the second collection is added to it. If this has side effects such as undesired UI that re-renders due to this event, you can suppress it by adding the {silent : true} flag

    collection1.add(collection2.toJSON(), {silent : true});
    

    Option 3

    If you just need the JSON format of these collections, i.e. for HTML template rendering purposes, you can just reduce everything to JS literals (arrays, objects):

    collection1.toJSON().concat(collection2.toJSON());
    => [{id: 1, article : "..."}, {id: 2, article : "..."}, ...];
    

    Option 4 = Option 2 + 3

    If you’ve already fetched both collections, you can reduce to JS literals and add everything to a fresh Backbone collection

    var rawCollection = collection1.toJSON().concat(collection2.toJSON());
    var newCollection = new Backbone.Collection(rawCollection);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Suppose I write: new Meteor.Collection(foos); new Meteor.Collection(bars); Is there an API for accessing those
Suppose I have several enums representing ... for example database vendors: Unknown , Oracle
Suppose there is a script sth.py When i logged with 'root' account. type :
Suppose there is a situation like : statement 1; statement 2; statement 3; statement
Suppose there are two lists a = {a1, a2, a3} and b = {b1,
Suppose there is an image_url column in database. I want the user to choose
Suppose there are ~10,000's of keys, where each key corresponds to a stream of
Suppose there is a table A which has a column AccessRights which is multivalued(
Suppose there is a System A which gives some output. This output is used
suppose there is a string of characters in an array of d[20] . How

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.