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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:44:00+00:00 2026-06-17T11:44:00+00:00

Is it possible to just simply trigger or call the error callback of save

  • 0

Is it possible to just simply trigger or call the error callback of save in backbone?

I’m overriding the save function of backbone with this

save: function(attributes, options) {
            options || (options = {});
            options.timeout    = 10000;    
            options.beforeSend = sendAuthorization;
            console.log( options.connection.ConnectionType );
            if( options.connection.ConnectionType != 'No network connection' ){
                Backbone.Model.prototype.save.call(this, attributes, options);
            }else{
                console.log("ERROR! network related!");
            }
    }

options.connection.ConnectionType is simple a string which states the current internet connection of the device (iPad).

this.model.save( this.model, 
  connection : { ConnectionType : "No network connection" },
  success    : {...},
  error      : {...}
}

What I want is if the if statement failed then it should trigger the error callback of the save function. Is it possible? Thanks

  • 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-17T11:44:01+00:00Added an answer on June 17, 2026 at 11:44 am

    At its simplest you can just execute the error callback function:

    if( options.connection.ConnectionType != 'No network connection' ){
        Backbone.Model.prototype.save.call(this, attributes, options);    
    } else {
        if(options.error) {
            options.error(this, null, options);
        }
    }
    

    This method has the problem that it doesn’t comply to the save method and error callback API. The save method is expected to return an jqXHR object, and the error callback is expected to have it as the second argument.

    If you want to provide an API compatible method/callback signature, the simplest way would be to abort the request. Something like:

    var xhr = Backbone.Model.prototype.save.call(this, attributes, options);
    if( options.connection.ConnectionType == 'No network connection' ){
        xhr.abort();
    }
    return xhr;
    

    This will cancel the request as soon as it is initiated. You get your xhr/promise return object and the correct xhr parameter to the callback. The status of the xhr will be 0 and statusText “abort”.

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

Sidebar

Related Questions

Hello guys. I think it isn't possible just using PHP, but just to be
Would it be possible to just label the x axis by the minimum value
In C we have Sockets and descriptors, it is possible to just take one
<form><input type=file name=first onchange=jsFunction(2);> <input type=file name=second onchange=jsFunction(3);</form> Possible to pass just numbers to
Possible Duplicate: Concatenate Two NSDate String values Just confused that is there any default
I just want to know if is possible to calculate the diference between two
Just wondering is it possible to build CLI app that can be run from
I just wonder if it is possible to only use CSS but not javascript
Using just an sql query is it possible to write the contents of a
Possible Duplicate: Business Case for Resharper I've just recently graduated and I'm working for

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.