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

  • Home
  • SEARCH
  • 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 9197729
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T22:08:13+00:00 2026-06-17T22:08:13+00:00

So here we have some application based on CompoundJS framework and some controller on

  • 0

So here we have some application based on CompoundJS framework and some controller on it:

load('application');

action('index', function () {
    someMethodWithAsyncCallback({}, function () {
        /* async preparing some params for template */
    });

    anotherMethodWithAsyncCallback({}, function () {
        /* async preparing another params for template */
    });

    // another couple of async calls

    // rendering index template
    render('index', { /* using async params */ });
});

The question is: how to render template index after the end of all callbacks?

Maybe there is something like jQuery’s $.when described in this answer?

  • 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-17T22:08:14+00:00Added an answer on June 17, 2026 at 10:08 pm

    Conceptually, you just need to keep track of the number of async calls returning you are waiting for, which I’ve illustrated in your code below. But there are loads of little libraries that make this a lot more generic, elegant and give you more control (like making sure they run in sequence and similar stuff). async.js for instance.

    
    load('application');
    
    action('index', function () {
    
        var asyncCounter = 2; // Or whatever number of async you want to complete...
        var completeFunc = function() {
            if (--asyncCounter > 0) {
                return;
            }
            // rendering index template
            render('index', { /* using async params */ });
        };
    
        someMethodWithAsyncCallback({}, function () {
            /* async preparing some params for template */
            completeFunc();
        });
    
        anotherMethodWithAsyncCallback({}, function () {
            /* async preparing another params for template */
            completeFunc();
        });
    
        // another couple of async calls
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

So here is the problem: I have some logic in my application that will
I've been working with a developer on a web-based application. I have some experience
I have here a slight problem. We have written a big spring based application
I have a couple of questions regarding a modular GWT based application framework. I
I have an ember.js router based application and need to perform some basic logic
I have a view based application which has some textboxes that I'm trying to
I have some code here that uses bitsets to store many 1 bit values
I have some code here which works perfectly in firefox but not in chrome
I have some code here to call minizip(), a boilerplate dirty renamed main() of
I have some question over here regarding the java garbage collector. First let me

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.