如何通过 fancyupload 传递会话

发布于 2025-01-06 01:35:21 字数 137 浏览 0 评论 0原文

这个问题可能已经存在,但它的回答非常普遍,如果有人确切地告诉我如何传递会话变量并检索它们,我将不胜感激。

我已经在 swiffuploader 选项中设置了appendCookieData: true。如何传递会话变量?

谢谢。

This question might have been there, but it's answered really generally, I'd appreciate if somebody tell me exactly how to pass the session variables and retrieve them.

I already set appendCookieData: true in swiffuploader options. How do I pass the session variables?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

池予 2025-01-13 01:35:21

fancyupload 将根据会话 cookie 设置 $_POST['PHPSESSID']

假设你的服务器端有php
确保接收文件的脚本启动会话,如下所示:

if(isset($_POST['PHPSESSID'])) {
    session_id($_POST['PHPSESSID']); 
}
session_start();

fancyupload will set $_POST['PHPSESSID'] based on the session cookie.

Assuming that you have php on the server side
make sure that the script that receives the the files starts the session like:

if(isset($_POST['PHPSESSID'])) {
    session_id($_POST['PHPSESSID']); 
}
session_start();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文