Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个会话变量并在其中存储了一个值“123456”。我需要在另一个页面上使用 ajax 调用该值。进行 ajax 调用时,我无法访问会话变量。session_start() 位于两个页面的顶部。我什至尝试将实际会话值从 ajax 函数调用的页面写入 txt 文件,但文件显示为空白。
该怎么办?
您无法从 Javascript 访问 PHP 会话信息(我假设这是您想要做的)。您可以将其作为隐藏字段或在 JS(使用 PHP 动态添加)中传递到第二页,将其添加到常规 cookie,或从 PHP 提供它作为对 AJAX 请求的响应,但我认为这些是您的只有选项。