Promise 异步函数的加上外壳终止Promise

Posted 谢玉胜的技术文章

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Promise 异步函数的加上外壳终止Promise相关的知识,希望对你有一定的参考价值。

//promise异步函数的请求终止
export default function markCancleble(promise){
	let hasCanceled_ = false ;
	const wrappedPromise = new Promise((resolve,reject)=>{
		// 传递过来的promise
		promise.then((val)=>{
			hasCanceled_?reject({isCanceled:true}):resolve(val)
		})
		promise.catch((err)=>{
			hasCanceled_?reject({isCanceled:true}):resolve(err)
		})
		return {
			promise:wrappedPromise,
			cancle(){
				hasCanceled_=true
			}
		}
	})
}

//useful 挂载到this中
this.cancleble =  markCancleble (fetch())
this.cancleble.promise
				.then()
				.catch()
				///
			//取消
			this.cancleble.cancle()

 

以上是关于Promise 异步函数的加上外壳终止Promise的主要内容,如果未能解决你的问题,请参考以下文章

Promise的那些事儿

关于Promise的总结

异步 Lambda 函数:返回 promise 或发送 responseURL 不会终止 CloudFormation 自定义资源调用

async 与 promise 的区别

Promise相关概念

异步编程解决方案之Promise/Deferred