ratchet-practice
发布于 10 年前 作者 i5ting 2980 次浏览 最后一次编辑是 8 年前 来自 分享

twitter ratchet framework’s practice

https://github.com/i5ting/ratchet-practice

这是我很早之前写的一篇,又在用ratchet,发出来和大家分享一下

欢迎关注我的公众号【node全栈】 node全栈.png

2 回复

补充一点

push事件

当多个页面push和pop的时候,可能需要更新数据,此时需要监听push事件

	window.addEventListener('push', function(e){
		var url = e.detail.state.url;

		if(case_one(url,/chat\.html/g)){
			// alert("聊天");
			init_with_chat();
		}
		
		if(case_one(url,/index\.html/g)){
			// alert("首页");
			// $('.content').html(index_content)
			// main();
		}
		
		function case_one(url, pattern){
			return (url.match(pattern)) instanceof Array;
		}
	});
回到顶部