importPolicemanList({ fileId: fileId[0].id }).then(()=>{ this.$message.success("导入成功"); }); (正确,能显示导入成功) --------------------上下两者等价吧,为何下面的当时不显示导入成功------------------ try{ await importPolicemanList({ fileId: fileId[0].id }) this.$message.success("导入成功"); }catch(err){ this.$message.error(`${err}`); }(错误,什么都不显示) 希望能得到正确的结果!