Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在dart:io和中看到了 websocket 的两个实现dart:html。我应该使用哪一个?目前我更喜欢 websocket,dart:io因为它似乎更自然地适合 dart 处理流和异步编程的方式。
dart:io
dart:html
该dart:html库用于客户端,可以编译为 JavaScript。
用于dart:io服务器端代码。
在典型设置中,您有一个 Web 服务器侦听来自客户端的 WebSocket 连接,在这种情况下,您将使用来自dart:html. 但是当然,如果您需要,您也可以在服务器上启动 WebSocket 连接:)