Quantcast
Channel: CNode:Node.js专业中文社区
Viewing all articles
Browse latest Browse all 14821

Promise嵌套

$
0
0
return new Promise().then(function(res) {
			if (!res) {
				return new Promise().then(function(items) {
					if (!items) { 
						return new Promise().then(function(data) {
							return data;
						});
					}
					return items;
				});
			}
			return  res;;
})

请问上述Promise嵌套如何处理


Viewing all articles
Browse latest Browse all 14821

Trending Articles