是什么原因导致Dart类"_WebSocketImpl"没有实例方法"发送"中的错误?



我已经使用各种教程创建了一个websocket服务器,例如:

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

然而,当我运行服务器端代码并尝试向客户端发送数据时,它会出现

Class '_WebSocketImpl' has no instance method 'send'

send方法被更改为什么?

好的,这里的问题基本上是所有的教程在网上和许多谷歌谈话页面有过时的信息。人们多次告诉我,这是send函数,如果它不起作用,我的代码中其他地方有错误。

这实际上是一个非常简单的变化,send已更名为add

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

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

相关内容

  • 没有找到相关文章

最新更新