html ES6承诺

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html ES6承诺相关的知识,希望对你有一定的参考价值。

const posts = [
  {title: 'Post One', body:'This is post one'},
  {title: 'Post Two', body: 'This is post two'}
];

function createPost(post) {
  return new Promise(function(resolve, reject){
    setTimeout(function() {
      posts.push(post);

      const error = false;

      if(!error) {
        resolve();
      } else {
        reject('Error: Something went wrong');
      }
    }, 2000);
  });
}

function getPosts() {
  setTimeout(function() {
    let output = '';
    posts.forEach(function(post){
      output += `<li>${post.title}</li>`;
    });
    document.body.innerHTML = output;
  }, 1000);
}

createPost({title: 'Post Three', body: 'This is post three'})
.then(getPosts)
.catch(function(err) {
  console.log(err);
});
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>JavaScript Sandbox</title>
</head>
<body>

  <script src="app.js"></script>
</body>
</html>

以上是关于html ES6承诺的主要内容,如果未能解决你的问题,请参考以下文章

类函数中的 Javascript ES6 承诺

ES5 与 ES6 承诺

es6 承诺吞下类型错误

承诺 es6 和超级代理

有没有办法判断 ES6 承诺是不是被履行/拒绝/解决? [复制]

使用 fetch 和 ES6 承诺处理自定义错误的最简洁方法