JavaScript异步函数未在模块中执行

时间:2017-06-30 13:45:00

标签: javascript async-await es6-modules

根据compatibility table,Firefox 54支持async / await,但在下面的代码中,异步函数永远不会执行,即使它甚至不等待任何事情。兼容性表是错误的还是代码中有错误?

<html>
<body>
<script type="module">
function helloSync()
{
 alert("sync: This alert always happens");
}

async function helloAsync()
{
 alert("async: This alert never happens");
}

helloSync();
helloAsync();
</script>
</body>
</html>

0 个答案:

没有答案