async await 错误处理

const awaitWrap = promise => {
  return promise
    .then(data => [data, null])
    .catch(err => [null, err]);
};
  • 若不能出口成章,我选择避而不言


    9648fc14eb1146b8839470cbe852be56.jpeg

你可能感兴趣的:(async await 错误处理)