html5 websocket能传送多少字节
1个回答
展开全部
var websock;
var req_seq;
if (!websock || websock.readyState === undefined || websock.readyState > 1) {
/**
* websocket的连个属性:readyState和bufferedAmount。
*
*根据readyState属性可以判断webSocket的连接状态,该属性的值可以是下面几种:
*0 :对应常量CONNECTING (numeric value 0),
*正在建立连接连接,还没有完成。The connection has not yet been established.
*1 :对应常量OPEN (numeric value 1),
*连接成功建立,可以进行通信。The WebSocket connection is established and communication is possible.
*2 :对应常量CLOSING (numeric value 2)
*连接正在进行关闭握手,即将关闭。The connection is going through the closing handshake.
*3 : 对应常量CLOSED (numeric value 3)
*连接已经关闭或者根本没有建立。The connection has been closed or could not be opened.
*
*根据bufferedAmount可以知道有多少字节的数据等待发送,若websocket已经调用了close方法则该属性将一直增长,
*/
var port = '8081';
var wsUrl = 'ws://'+ window.location.hostname + ':'+port;
//var wsUrl = 'ws://localhost:8082/websocket/server.php';
/**
* 当new一个WebSocket的时候,该socket开始试图连接到服务端。
*/
websock = new WebSocket(wsUrl);
/**
* 当服务端推送消息到客户端的时候出发message事件,调用message对应的回调函数,即此函数,参数是一个事件对象。
*/
websock.onmessage = function(event) {
var data = JSON.parse(event.data);
req_seq = data.req_seq;
console.log(event.data);
};
/**
* 当连接发生各种问题时触发error事件,调用error回调函数,即此函数,参数是一个事件对象。
*/
websock.onerror = function(event) {
//连接失败, 清空队列
console.log(event.data);
};
/**
* 当连接已经成功建立触发open事件,调用open回调函数,即此函数,参数是一个事件对象。
*/
websock.onopen = function ( evt ) {
var url = [
'/json/subscribe'
,'?service=quote' //service name
,'&type=dyna'
,'&field=open,time,low' //request fileds , 为空将会是所有列
,'&where=obj=SH600036.stk' //condition
,'&start=-10'
,'&count=10'
,'&response_times=-1' //期望相应的次数,-1为推送
,'&response_mode=0'
//,'&cache_timeout=0' //代理端的缓存时间单位秒
//,'&request_timeout=0'
];
//url = "service=quote&type=dyna&field=open&where=obj=SH600000.stk&response_times=1&response_mode=0";
/**
* send方法向服务器端发送数据,参数是字符串。
*/
websock.send( url.join ? url.join('') : url );
};
setInterval(function(){
//console.log(websock.bufferedAmount);
},100);
/**
*websocket调用close方法后触发close事件,之后执行close的回调函数,即此函数,参数是一个事件对象。
*/
websock.onclose = function (event) {
console.log('webSocket close')
};
var req_seq;
if (!websock || websock.readyState === undefined || websock.readyState > 1) {
/**
* websocket的连个属性:readyState和bufferedAmount。
*
*根据readyState属性可以判断webSocket的连接状态,该属性的值可以是下面几种:
*0 :对应常量CONNECTING (numeric value 0),
*正在建立连接连接,还没有完成。The connection has not yet been established.
*1 :对应常量OPEN (numeric value 1),
*连接成功建立,可以进行通信。The WebSocket connection is established and communication is possible.
*2 :对应常量CLOSING (numeric value 2)
*连接正在进行关闭握手,即将关闭。The connection is going through the closing handshake.
*3 : 对应常量CLOSED (numeric value 3)
*连接已经关闭或者根本没有建立。The connection has been closed or could not be opened.
*
*根据bufferedAmount可以知道有多少字节的数据等待发送,若websocket已经调用了close方法则该属性将一直增长,
*/
var port = '8081';
var wsUrl = 'ws://'+ window.location.hostname + ':'+port;
//var wsUrl = 'ws://localhost:8082/websocket/server.php';
/**
* 当new一个WebSocket的时候,该socket开始试图连接到服务端。
*/
websock = new WebSocket(wsUrl);
/**
* 当服务端推送消息到客户端的时候出发message事件,调用message对应的回调函数,即此函数,参数是一个事件对象。
*/
websock.onmessage = function(event) {
var data = JSON.parse(event.data);
req_seq = data.req_seq;
console.log(event.data);
};
/**
* 当连接发生各种问题时触发error事件,调用error回调函数,即此函数,参数是一个事件对象。
*/
websock.onerror = function(event) {
//连接失败, 清空队列
console.log(event.data);
};
/**
* 当连接已经成功建立触发open事件,调用open回调函数,即此函数,参数是一个事件对象。
*/
websock.onopen = function ( evt ) {
var url = [
'/json/subscribe'
,'?service=quote' //service name
,'&type=dyna'
,'&field=open,time,low' //request fileds , 为空将会是所有列
,'&where=obj=SH600036.stk' //condition
,'&start=-10'
,'&count=10'
,'&response_times=-1' //期望相应的次数,-1为推送
,'&response_mode=0'
//,'&cache_timeout=0' //代理端的缓存时间单位秒
//,'&request_timeout=0'
];
//url = "service=quote&type=dyna&field=open&where=obj=SH600000.stk&response_times=1&response_mode=0";
/**
* send方法向服务器端发送数据,参数是字符串。
*/
websock.send( url.join ? url.join('') : url );
};
setInterval(function(){
//console.log(websock.bufferedAmount);
},100);
/**
*websocket调用close方法后触发close事件,之后执行close的回调函数,即此函数,参数是一个事件对象。
*/
websock.onclose = function (event) {
console.log('webSocket close')
};
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询