对于每个没有以正确的顺序开火

时间:2018-03-02 15:57:44

标签: javascript jquery loops foreach twitch

晚上好。

我目前正在开发一款使用twitch API的应用。

我第一次使用forEach JS命令。但由于某些原因我无法弄清楚,它似乎有点混乱,好像每个都没有以正确的顺序触发,并且好像该函数有时在下一个数组的元素被触发之前执行了好几次。

我构建了一个将问题区分开来的codepen:

https://codepen.io/Hadrienallemon/pen/bLZJeX

正如您在笔中看到的,如果您在测试按钮上单击几次,结果并不总是按正确的顺序排列。

以下是代码:

HTML:

<button id="button">test button</button>
<div class="wrapper"></div>

CSS:

html,body{
  height : 100%;
  width : 100%;
}

.wrapper{
  height : 90%;
  width : 100%;
}

.awnser{
  background-color : tomato;
  margin : 50px auto;
  width : 60%;
  min-height : 10%;

}

JS:

var lives = ["nat_ali","krayn_live","streamerhouse","merry"];
$("button").on("click",function(){ 
  lives.forEach(function(element){
    $(".wrapper").empty();
      $.getJSON("https://wind-bow.glitch.me/twitch-api/streams/"+ element +"?callback=?",function(quote){

        if (quote.stream != null){
          $(".wrapper").append("
          <div class = 'awnser'>
              <p>"+quote.stream.game+"</p>
          </div>");
        }
        else{
          $(".wrapper").append("
          <div class = 'awnser'>
            <span class = 'circle' style ='text-align : right'>
              <p style = 'display : inline-block;'>offline</p>
            </span>
          </div>");
       }

    })
      $.getJSON("https://wind-bow.glitch.me/twitch-api/users/"+ element +"?callback=?",function(quote){

        console.log(quote.logo);
        $(".awnser:last-child").append("
        <div style ='width : 10%; height : 10%;'>"+ quote.display_name +"
            <img src = '"+quote.logo+"' style = 'max-width : 100%;max-height : 100%;'></div>");

    }) 
  })  
})

2 个答案:

答案 0 :(得分:1)

$.getJSON 异步。您的forEach 以给定的顺序启动来电,但他们可以完全按照任何顺序完成完成

如果您想按顺序处理完成,可以将$.getJSON中的每个承诺保存在一个数组中,等待它们以$.when结束(它们将并行运行,但是您的回调在它们全部完成之前不会运行,然后处理结果:

$.when.apply($, lives.map(element => $.getJSON(/*...*/))
.done((...results) => {
    // All calls are done, process results
    results.forEach(result => {
        // ...
    });
});

jQuery的$.when将使用您传递的每个承诺的参数调用您的done回调。在上面,我们通过rest参数将它们收集到一个数组中,然后遍历它。

使用arguments伪数组:

使用ES2015之前的语法
$.when.apply($, lives.map(function(element) { return $.getJSON(/*...*/)})
.done(function() => {
    var results = Array.prototype.slice.call(arguments);
    // All calls are done, process results
    results.forEach(function(result) {
        // ...
    });
});

答案 1 :(得分:1)

&#13;
&#13;
// Your code:
/*var lives = ["nat_ali","krayn_live","streamerhouse","merry"];
$("button").on("click",function(){ 
  lives.forEach(function(element){
    $(".wrapper").empty();
      $.getJSON("https://wind-bow.glitch.me/twitch-api/streams/"+ element +"?callback=?",function(quote){

        if (quote.stream != null){
          $(".wrapper").append("
          <div class = 'awnser'>
              <p>"+quote.stream.game+"</p>
          </div>");
        }
        else{
          $(".wrapper").append("
          <div class = 'awnser'>
            <span class = 'circle' style ='text-align : right'>
              <p style = 'display : inline-block;'>offline</p>
            </span>
          </div>");
       }

    })
      $.getJSON("https://wind-bow.glitch.me/twitch-api/users/"+ element +"?callback=?",function(quote){

        console.log(quote.logo);
        $(".awnser:last-child").append("
        <div style ='width : 10%; height : 10%;'>"+ quote.display_name +"
            <img src = '"+quote.logo+"' style = 'max-width : 100%;max-height : 100%;'></div>");

    }) 
  })  
})*/

// You need to use JQuery's method to get the data back in promises to know the order in which they are received and map the data together:
const lives = ["nat_ali","krayn_live","streamerhouse","merry"];
$(".wrapper").empty();
const streams = lives.map((val) => {
  return $.getJSON(`https://wind-bow.glitch.me/twitch-api/streams/${element}?callback=?`;
});
const users = lives.map((val) => {
  return $.getJSON(`https://wind-bow.glitch.me/twitch-api/users/${element}?callback=?`;
});

$.when(streams).then(
  (streamsData) => {
    // Do what you need to for when the streamsData (array) is correlated to the array indices for the "lives" array defined above.
  },
  (err) => { /* handle API failures */ }
);
  
$.when(users).then(
  (usersData) => {
    // Do what you need to do for the usersData (array) that is correlated to the array indices for the "lives" array defined above.
  }
);
&#13;
&#13;
&#13;