Giter VIP home page Giter VIP logo

Comments (4)

gpbl avatar gpbl commented on May 11, 2024

Are you using fetchr with the fetchr plugin to register your services?

from fluxible.

bringking avatar bringking commented on May 11, 2024

No, I am just trying to use a generic service that returns a promise.

from fluxible.

gpbl avatar gpbl commented on May 11, 2024

If the server does send a response, but with an empty state, it may be a problem with the contexts you are using. If it doesn't send any response, I'd check why the done() function is never called (something should tell the router "ok I'm done, now serve the response").

I've been fighting with both cases until I got how fluxible works. Trying to isolate the problem did help a lot!

from fluxible.

bringking avatar bringking commented on May 11, 2024

I figured it out. Basically I was using the flux-routr plugin and firing off my route dependent actions to load the initial data-

 campaigns: {
        path: '/campaigns',
        method: 'get',
        page: 'campaigns',
        label: 'Campaigns',
        action: function( context, payload, done ) {
            loadCampaigns(context,payload,done);
            done();
        }
    },

But I was calling done instead of letting loadCampaigns call done(). Therefore, the action was immediately returning and react was rendering the view assuming no changes were emitted.

 campaigns: {
        path: '/campaigns',
        method: 'get',
        page: 'campaigns',
        label: 'Campaigns',
        action: function( context, payload, done ) {
            loadCampaigns(context,payload,done);
        }
    },

Removing the done() fixed the problem.

from fluxible.

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.