安卓目前已经支持websocket
websocket = new WebSocket("ws://地址");
websocket.onopen = function(evnt) {
plus.nativeUI.toast("建立socket连接");
};
websocket.onmessage = function(evnt) {
plus.nativeUI.toast("接收到消息"+evnt.data);
};
websocket.onerror = function(evnt) {
plus.nativeUI.toast("连接错误"+evnt);
};
已经完全可以用了
1 个评论
要回复文章请先登录或注册
jonychen1