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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T17:28:57+00:00 2026-06-16T17:28:57+00:00

I am running into an issue when my Model is fetched from the server.

  • 0

I am running into an issue when my Model is fetched from the server. I see the correct JSON returned back from the server in chrome dev tools but the model does not update with the returned values.

var listtemplate = new ListTemplateModel.Model({id: id});
listtemplate.fetch();

I see the correct data in Chrome dev tools at this point. Here is what comes back from the server:

{
  "title": "Template one",
  "id": "template_one",
  "steps": [
    {
      "description": "I love it",
      "id": 1,
      "created_at": "2012-12-24T18:01:48.402Z"
    },
    {
      "description": "This is rubbish!",
      "id": 1,
      "created_at": "2012-12-24T18:01:48.402Z"
    }
  ],
  "created_at": "2012-12-24T18:01:48.402Z"
}

but console logging the JSON show me just the default value and the id that was passed in during the model creation.

console.log(listtemplate.toJSON());

and this returns:

{id: "template_one", title: "", steps: Array[0]}
 

My model looks like this (I am using Require.js, hence the Model has been renamed to ListTemplateModel above)

var Model = B.Model.extend({
        defaults: {
            title: '',
            id: 0,
            steps: []
        },
        urlRoot: 'xxx'
    });

Any ideas?

Edit
@Amulya’s answer set me on the right track and then i discovered “then”. Hope this helps someone running into the same issue:

listtemplate.fetch().then(function(){
   //update the view
});
  • 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-16T17:28:59+00:00Added an answer on June 16, 2026 at 5:28 pm

    The reason maybe because you do not wait for the fetch to be completed. Try this:

    var listtemplate = new ListTemplateModel.Model({id: id});
    listtemplate.fetch({
        success: function() {
            // fetch successfully completed
            console.log(listtemplate.toJSON());
        },
        error: function() {
            console.log('Failed to fetch!');
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am currently running into an issue trying to create delegates from MethodInfo .
I'm running into an issue that's arising from the fact that one has to
I'm running into an issue where my deployment loops through Recycling. From Visual Studio:
I'm running into an issue on a clients production server where the month &
I'm running into an issue with an existing ActiveRecord::Observer model that records various Activities
I'm running into an issue accessing a changed model field, traversing relationships in a
I'm running into an issue trying to use @Html.DropDownListFor(). I have a model with
I'm running into an issue in the View with pulling data from different entities.
I am running into an issue with the way my asynctasks are executed. Here's
I am running into an issue similar to the one described here: NSFetchedResultsControllerDelegate not

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.