gpt4 book ai didi

javascript - ReasonML 是否支持异步/等待?

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:40:02 24 4
gpt4 key购买 nike

我一直在浏览 JS -> Reason cheatsheet on the Reason ML website .它们非常有用,但都没有涵盖现代 ES 中可用的 async/await 语法。

Reason ML 等价于什么?

import fs from 'mz/fs';

// A cat-like utility
const main = async () => {
if (process.argv.length != 3) {
throw new Error('Expected a file-path');
}
const path = process.argv[2];
const content = await fs.readFile(path);
console.log(content.toString());
};

main().catch(error => console.error(error));

最佳答案

ReasonML documentation说:

Note: we might offer a dedicated syntax for JS promises (async/await) in the future.

这意味着它目前不支持异步/等待。

关于javascript - ReasonML 是否支持异步/等待?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48810766/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com