data: any;
我们来看看下面的代码:
1 Res.loadRes("http://xxx.xxx/common.zip").then((v) => {
2 console.log(v); // ResInfo {url: "http://xxx.xxx/common.zip", data: "0.6981821740164385"}
3 }).then((v) => {
4 console.log(v); // undefined
5 });
我们发现then方法在不返回新的Promise的时候,继续再次调用then方法,还是可以得到触发,这个触发在上一个then之后,但是已经取不到返回的值了。
如果希望第二个then也可以得到异步的返回值,可以这么写:
1 Res.loadRes("http://xxx.xxx/common.zip").then((v) => {
2 console.log(v); // ResInfo {url: "http://xxx.xxx/common.zip", data: "0.7905235849704688"}
3 return Promise.resolve(v);
4 }).then((v) => {
5 console.log(v); // ResInfo {url: "http://xxx.xxx/common.zip", data: "0.7905235849704688"}
6 });
直接返回值也可以让第二个then取到值:
1 Res.loadRes("http://xxx.xxx/common.zip").then((v) => {
2 console.log(v); // ResInfo {url: "http://xxx.xxx/common.zip", data: "0.7905235849704688"}
3 return v;
4 }).then((v) => {
5 console.log(v); // ResInfo {url: "http://xxx.xxx/common.zip", data: "0.7905235849704688"}
6 });
或者改变返回值:
1 Res.loadRes("http://xxx.xxx/common.zip").then((v) => {
2 console.log(v); // ResInfo {url: "http://xxx.xxx/common.zip", data: "0.6981821740164385"}
3 return "hello";
4 }).then((v) => {
5 console.log(v); // hello
6 });
可以通过判断转变为一个异常抛出:
1 Res.loadRes("http://xxx.xxx/common.zip").then((v) => {
2 console.log(v); // ResInfo {url: "http://xxx.xxx/common.zip", data: "0.6981821740164385"}
3 if (true) {
4 return Promise.reject("error 1000");
6 }).then((v) => {
7 console.log(v); // 这里已经不会被执行到了
8 }).catch((err) => {
9 console.log(err); // error 1000
10 });
async和await
async 的方法就可以看做一个封装好的 Promise 对象,调用该方法就会立刻得到一个 Promise 对象,该方法返回的值是 then 的成功回调的参数;
当需要对一个 async 方法或者返回 Promise 对象的方法进行异步等待时,就要加上 await 关键字,同时加了 await 关键字的方法要变成用 async 修饰的方法;
如果不加 await 关键字,就要使用 then 方法来监听异步的回调;
async 和 await 可以看做Promise的编写语法糖;
下面直接上实例:
1 private async loadAll(): Promise<string> {
2 console.log("加载前的初始化");
3 await Res.loadRes("http://xxx.xxx/common.zip");
4 console.log("加载通用资源成功");
5 let info = await Res.loadRes("http://xxx.xxx/ui.zip");
6 console.log("加载 " + info.url + "成功: " + info.data);
7 await Res.loadRes("http://xxx.xxx/code.zip");
8 console.log("最后一个资源加载成功");
10 return "complete";
11 }
13 this.loadAll()
14 .then((result?: string) => {
15 console.log("加载全部完毕: " + result);
16 })
17 .catch((reason?: any) => {
18 console.log("加载失败: " + reason);
19 });
实际上就是Promise的简写形式,也更方便阅读和理解。
另外一些需要关注的细节
Promise的异步处理逻辑函数中立即调用resolve,是同步执行么?
我们来看下面的例子:
1 private foo() {
2 return new Promise((r:Function)=>{
3 console.log("2");
4 return r("resolve");
5 });
8 console.log("1");
9 this.foo().then(()=>{
10 console.log("3");
11 });
12 console.log("4");
从输出来看调用了resolve之后,并没有立即触发then的回调,而是继续执行下面的方法(输出了4),之后才调用了then的回调(输出了3),所以立即返回后,并不是同步立即执行then的回调,但then的回调并没有等到下一个刷新(即下一帧)才调用,而是在本帧就会调用,只是调用放在本帧的稍后的时间里进行;
多个其它地方的then方法可以同时等待同一个Promise么?
目前为止,我们都是等待一个新创建的Promise,如果多个方法都在等待同一个Promise会怎么样,我们看看下面的例子:
1 private _p: Promise<any>;
3 private foo1() {
4 return this._p;
7 async foo2() {
8 await this.foo1();
9 console.log("foo2 1");
10 await this.foo1();
11 console.log("foo2 2");
12 await this.foo1();
13 console.log("foo2 3");
14 }
16 async foo3() {
17 await this.foo1();
18 console.log("foo3 1");
19 await this.foo1();
20 console.log("foo3 2");
21 }
23 this._p = new Promise((r:Function)=>{
24 setTimeout(()=>{
25 console.log("异步执行完毕");
26 return r("data");
27 },1000);
28 });
30 this.foo2().then(()=>{console.log("foo2 e");});
31 this.foo3().then(()=>{console.log("foo3 e");});
输出如下:
1 异步执行完毕
2 foo2 1
3 foo3 1
4 foo2 2
5 foo3 2
6 foo3 e
7 foo2 3
8 foo2 e
我们发现多个方法可以等待同一个Promise,该Promise成功或者失败时,所有等待该Promise的方法都会继续执行。
如果await一个已经执行完成的Promise时,会立即得到结束的执行。
Promise只会执行第一次的回调
当我500毫秒时,调用reject,1000毫秒时,调用resolve,then里面的方法是不会执行的。
1 function foo() {
2 return new Promise((resolve, reject) => {
3 setTimeout(()=>{
4 console.log("error");
5 reject();
6 }, 500);
7 setTimeout(()=>{
8 console.log("resolve");
9 resolve();
10 }, 1000);
11 });
12 }
14 foo().then(()=>{
15 console.log("success");
16 })
17 .catch(()=>{
18 console.log("fail");
19 });