async test() {
try {
let res = await axios.post(url, {
'data': 'data')
});
if (res.status === 200 && res.data.OK) {
console.log('success');
} else {
console.log('404');
}
} catch(e) {
console.log(e);
}
}
try/catch来捕获异常,把await 放到 try 中进行执行,如有异常,就使用catch 进行处理。