const q = () => console.log(2)const w = async () => { console.log(1) await q console.log(3)}w()为什么q没有输出 1 2 3而是输出 1 3 查看完整描述