1

好的,所以我使用各种教程创建了一个 websocket 服务器,例如:

http://japhr.blogspot.co.uk/2012/12/dart-client-and-server-websockets.html http://www.dartlang.org/docs/dart-up-and-running/contents/ch05 .html

但是,当我运行服务器端代码并​​尝试将数据发送到客户端时,它会出现

Class '_WebSocketImpl' has no instance method 'send'

发送方法更改为什么?

4

1 回答 1

1

好的,所以这里的问题基本上是网络上的所有教程,许多 Google Talk 页面的信息已经过时。人们多次告诉我它的send功能,如果它不工作,我的代码中的其他地方会有错误。

它实际上是一个非常简单的更改,send已重命名为add.

http://api.dartlang.org/docs/releases/latest/dart_io/WebSocket.html

如果您在阅读文档时不小心错过了它,那将非常令人沮丧。

于 2013-06-22T00:35:02.173 回答