Javascript 无需重新加载页面即可更改变量的值?

发布于 2025-01-08 17:27:27 字数 534 浏览 1 评论 0原文

我在我的网站上使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文