Javascript 无需重新加载页面即可更改变量的值?
我在我的网站上使用 Socket IO 获取实时信息,一切正常,但在某种情况下我必须打开一个新连接,替换旧连接。所以我需要替换定义会话的变量,有办法做到这一点吗?无论是重新加载特定的 javascript 页面,还是更新页面上的变量。
我包含了 javascript 页面:
<script type="text/javascript" src="js/ws/data/data.js"></script>
在此页面上有许多名为“socket”的变量,它是在上面的行中定义的,我包含该 javascript 页面,如下所示:
var socket = io.connect();
在页面本身上,该变量的使用方式如下
socket.on('connected', function () {
socket.emit("session", cookie('login'));
});
:无论如何我可以做到这一点吗?
I'm using Socket IO for realtime information on my website, everything works fine, but under a certain circumstance I have to open a new connection, replacing the old. So I need to replace the variable that defines the session, is there a way to do this? whether it be reload that one particular javascript page, or update the variables on the page.
I include the javascript page:
<script type="text/javascript" src="js/ws/data/data.js"></script>
on this page there are a number of variables called "socket" which is defined on the line above where I include that javascript page like so:
var socket = io.connect();
on the page itself the variable is used in ways such as:
socket.on('connected', function () {
socket.emit("session", cookie('login'));
});
Is there anyway I can do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论