Dart语言支持异步/等待编程风格,或类似?

这个问题在这里已经有了答案:

  • Dart 1.8中的异步/等待功能1个答案

  • 现在不行。 请参阅问题支持Dart中的“等待”。


    基本支持已经可用。
    有关更多详细信息,请参阅https://www.dartlang.org/articles/await-async/。

    main() async {
      print(await foo());
      try {
        print(await fooThrows());
      } catch(e) {
        print(e);
      }
    }
    
    foo() async => 42;
    
    fooThrows() async => throw 'Anything';
    
    链接地址: http://www.djcxy.com/p/72635.html

    上一篇: Dart language support async/await programming style, or similar?

    下一篇: Identifying the version of a client web app during HTTP requests