好的,所以我使用各种教程创建了一个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'
发送方法有什么变更?
答案 0 :(得分:1)
好的,所以这里的问题基本上就是网络上的所有教程,许多Google Talk页面都有过时的信息。人们多次告诉我它是send
函数,如果它不起作用,我的代码中的其他地方就会出现错误。
实际上这是一个非常简单的更改,send
已重命名为add
。
http://api.dartlang.org/docs/releases/latest/dart_io/WebSocket.html
如果您在阅读文档时不小心错过了它,那将令人沮丧。