0

我有一些同步的任务和其他异步的任务。它们是混合的,但我想按顺序执行所有这些。

图片我有以下同步任务:初始化、启动、完成、终止和以下异步任务:task1、task2

我希望它们按以下顺序执行:初始化、启动、任务 1、任务 2、完成、终止

那么如何使用 $.queue() 呢?在我的实现之下,但它不起作用。

下面是任务代码:

初始化、启动、完成和终止是“愚蠢的”函数,因为它们只将消息打印到控制台日志和 div 项。

function initialize(next) {

 // Here initialization stuff is done just before starting the entire process: things that are required later during the process
     console.log('Initiating process...');
     postStatus('</br>Initiating process...');

     next();
 }

 function initiate(next) {
     // Here enable/disable buttons are done
     setButtonDisabled(true);


     console.log('Process started.');
     postStatus('Process started <br/>');

     next();
 }


 function finalize(next) {
 // Here things required to be done just before terminating the entire process should be done.
 // Free resources, etc.
       console.log('Finishing process...');
       postStatus('<br/>Finishing process...');

       next();
 }

 function terminate(next) {
 // Here things that need to be done when the entire process finished.
 // Simple things such as those related to UI.
      setButtonDisabled(false);

      console.log('Process terminated.');
      postStatus('<br/>Process terminated.');

      next();
 }

其余的部分:

 function core(urlGetData, urlDoTask) {

 getTasks(urlGetData).then(function (response) {
            console.log("Response from getTasks: " + response);
             postResponse(response, "Received GetData results" + JSON.stringify(response));
            if ("fail" === response.status) {
               return fail(response);
            }

            console.log(response);
            return doTasks(response.data, urlDoTask);
      }).then(function () {
            postStatus("Received DoTask results");

            var results = arguments;
            console.log(results);
            for (var i = 0; i < results.length; i++) {
               postResponse(results[i], 'done ' + JSON.stringify(results[i]));
            }
      }).fail(function (err) {
            postStatus("Error: " + JSON.stringify(err));
      });
 }

 function Task1(next) { 
         if ($('#Task1').is(':checked')) {
             core("/MyController/GetDataTask1/", "/MyController/DoTask1/");
         }

         next();
 }

 function Task2(next) {    
   if ($('#Task2').is(':checked')) {
         core("/MyController/GetDataTask2/", "/MyController/DoTask2/");
   }

   next();
 }

在按钮点击我做:

  $({}).queue(initialize)
       .queue(initiate)
       .queue(Task1)
       .queue(Task2)
       .queue(finalize)
       .queue(terminate);

但似乎它们没有按顺序执行,因为在控制台中它是按以下顺序打印的:

  1. 初始化消息
  2. 发起消息
  3. 任务 1 的消息
  4. 任务 2 的消息
  5. 最终确定的消息
  6. 终止消息
  7. 显示 task1 进度消息
  8. 显示 task2 进度消息
  9. 显示 task2 进度消息
    1. 等等......混合task1和task2进度消息

因为 task1 和 task2 是异步的....那么如何解决这个问题?我想要一个非阻塞的解决方案。

输出应该是:

  1. 初始化消息
  2. 发起消息
  3. 执行任务 1 显示任务 1 的进度消息 结束执行任务 1
  4. 任务 2 的消息 显示任务 2 的进度消息 结束执行任务 2
  5. 最终确定的消息
  6. 终止消息

如何将所有它们(初始化、启动、task1、task2、finalize 和终止)按顺序执行?任何一段代码都将受到高度赞赏....

我正在使用 jQuery 10.1.2

4

1 回答 1

0

根本不需要使用$.queue- 我相信你应该能够做到这一切.then(),例如

initialise().then(initiate).then(task1)...

只需确保您的初始函数返回一个 Promise。

于 2013-09-25T19:23:50.650 回答