// 第一种:用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); });
2022-03-11 16:59:36
// 第一种:用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); });