ES: Promise的基本用法
Posted wx62e0d796b5814
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ES: Promise的基本用法相关的知识,希望对你有一定的参考价值。
let myRandom=Math.floor(Math.random() * 10 );
var workIsDone=new Promise(
(resolve,reject) =>
if(myRandom<5)
resolve("finished......")
else
reject("ongoing......")
)
workIsDone.then(function(value)
console.log("ok: "+value)
, function(error)
console.log("error: "+error);
);
以上是关于ES: Promise的基本用法的主要内容,如果未能解决你的问题,请参考以下文章