码迷,mamicode.com
首页 > 其他好文 > 详细

es6中 async await 底层实现原理

时间:2019-10-17 19:14:06      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:starting   DPoS   var   res   es6   out   this   bsp   val   

Input
async function findPosts() {
  var response = await $.get(‘/posts‘);
  return JSON.parse(response.posts);
}

async function main() {
  console.log(‘starting...‘);
  
  var posts = await findPosts();

  posts.forEach(function (post) {
    console.log(post);
  });
  
  console.log(‘ending...‘);
}

main();

 

Output
function findPosts() {
    var ctx = this, args = arguments;
    return Promise.resolve().then(function () {
        var response;
        return $.get(‘/posts‘).then(function (value) {
            response = value;
            return JSON.parse(response.posts);
        });
    });
}

function main() {
  var ctx = this, args = arguments;
  return Promise.resolve().then(function () {
    console.log(‘starting...‘);
    
    var posts;
    return findPosts().then(function (value) {
      posts = value;
      
      posts.forEach(function (post) {
        console.log(post);
      });
      
      console.log(‘ending...‘);
    });
  });
}

main();

  

 

我很想 知道他是如何  

var posts = await findPosts(); 
后面的代码  也添加到 同一个
 return findPosts().then(  方法中的


参考  https://github.com/jayphelps/sweet-async-await

es6中 async await 底层实现原理

标签:starting   DPoS   var   res   es6   out   this   bsp   val   

原文地址:https://www.cnblogs.com/FlowLight/p/11694114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!