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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T20:35:44+00:00 2026-06-07T20:35:44+00:00

I have some code where I want a NoteCollectionView to add a new Note

  • 0

I have some code where I want a NoteCollectionView to add a new Note to the NoteCollection. This is triggered by a function newNote in the NoteCollectionView:

newNote: function(data) {
    var note = new Note(data);
    this.collection.add(note);
},

I’m still very new to backbone, and I want to make sure this syncs with the server. The concerns I have are:

1) Will simply adding this note to the collection trigger a save() from the server, and update the model with the ID that the server gives it? Or,

2) If the server does not update my model and give me an actual ID, how do I save the model with note.save() and get back an ID from the server?

  • 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-07T20:35:46+00:00Added an answer on June 7, 2026 at 8:35 pm

    To address your first question, no, .add will not trigger any kind of call to the server; it will only add a model to a collection.

    However, you do have a couple options. One would be to create the new note model, save it to the database, and then add it to the collection:

    newNote: function(data) {
        var note = new Note(data);
        note.save();
        this.collection.add(note);
    }
    

    The second option is to simply use Backbone’s collection.create method. Give it a hash of attributes and it will

    1. Create the model
    2. Save it to the database
    3. Add it to the collection

    All in one fell swoop, like so:

    newNote: function(data) {
        return this.collection.create(data);
    }
    

    collection.create also returns the newly created model, illustrated by my return statement above.

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

Sidebar

Related Questions

I have a situation like this: start(); <Some code> end(); I want start() function
I have some code within one function that I want to separate into its
Have some code: using (var ctx = new testDataContext()) { var options = new
I have some code like this: final int height = 0; //I want to
I have some ancient code which I want to convert to PDO: <?php function
I have some code that dynamically add button to StackPanel. I want to do
I have some code which I want to document with in-body comments like so:
I have some code that I want to put into an svn repository for
I have some shared code I want to reuse in my Xcode projects. The
I have some code ( ILColorPicker ) that I want to install into my

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.