2
只是一個簡單的問題:YUI3和socket.io
我使用我的網站YUI3
框架,並希望使用socket.io
框架。
現在的挑戰是用YUI3使用socket.io
。 截至目前我正在使用socket.io
邏輯裏面的YUI
沙箱,它的工作正常。
但是這種方法可以有任何回退嗎?如果是的話,那麼我應該如何將兩者結合?
這裏的代碼片段:
<script type="text/javascript">
YUI().use('my-slide' , 'node', 'event','transition', function (Y) {
// connecting to nodejs server running on 7001 port for dynamic updates
var broadcast = io.connect('http://localhost:7001/getlatestbroadcast');
broadcast.on('status',function(data){
// some socket logic here
});
// Setting Listener
broadcast.on('moreData',function(data){
// some socket logic here
});
});
</script>
非常感謝給我的方式做得更優雅:)我會像上面試試.. :) – voila