//1async function f() { return 'hello world';}f().then(res => console.log(res))//2async function f() { return await 'hello world';}f().then(res => console.log(res)) 写法一和写法二有啥区别
添加回答
举报
0/150
提交
取消