// 第一种:用async、await修饰 async function a() { let b = await crawer("参数"); console.log(b); } a(); // 第二种:用.then接收 let b = crawer("参数") .then((res) => { console.log(res); }) .catch((e) => { console.log(1); });
原文:https://www.cnblogs.com/lyt520/p/14723471.html