GithubHelp home page GithubHelp logo

Comments (4)

alekseykulikov avatar alekseykulikov commented on July 17, 2024

Obviously I use collection.fetch({data: {username: myusername, password: mypassword}});
But I never used fetch with params and backbone.offline together, probably, there's can be some mistake.

from backbone-offline.

rjmackay avatar rjmackay commented on July 17, 2024

I've worked around this issue by overriding methods for now:

Offline.syncWithAuth = function(method, model, options, error) {
    var settings = model.settings || model.collection.settings;

    // Add username / password
    if (!options.username)
    {
        options.username = settings.get('username');
        options.password = settings.get('password');
    }

    Backbone.ajaxSync.apply(this, [method, model, options, error]);
};

// Override offline sync to use syncwithAuth
Offline.sync = function(method, model, options) {
    var store, _ref;
    store = model.storage || ((_ref = model.collection) != null ? _ref.storage : void 0);
    if (store && (store != null ? store.support : void 0)) {
        return Offline.localSync(method, model, options, store);
    } else {
        return Offline.syncWithAuth(method, model, options);
    }
};

// Tweak the Backbone.offline ajax sync
Offline.Sync.prototype.ajax = function(method, model, options) {
    if (Offline.onLine()) {
        this.prepareOptions(options);

        var settings = model.settings || model.collection.settings;

        // add username / password
        if (!options.username)
        {
            options.username = settings.get('username');
            options.password = settings.get('password');
        }

        return Backbone.ajaxSync(method, model, options);
    } else {
        return this.storage.setItem('offline', 'true');
    }
};

from backbone-offline.

alekseykulikov avatar alekseykulikov commented on July 17, 2024

@rjmackay It looks like a good patch for your local goals, thanks for your experience. Maybe I should add a shared way for adding additional parameters to backbone.offline. What do you think about it?

from backbone-offline.

rjmackay avatar rjmackay commented on July 17, 2024

My solution works when you're always passing the same parameters. However
with standard ajaxSync parameters passed to fetch() would be forwarded to
jquery.ajax()
It would be good to preserve this behaviour, ie: if offline ignore the
fetch params, if online pass them as with normal ajax sync.

On Tue, May 22, 2012 at 6:27 PM, Aleksey Kulikov <
[email protected]

wrote:

@rjmackay It looks like a good patch for your local goals, thanks for your
experience. Maybe I should add a shared way for adding additional
parameters to backbone.offline. What do you think about it?


Reply to this email directly or view it on GitHub:
#8 (comment)

from backbone-offline.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.