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.
我想使用 php 或 ajax 传递我的帖子值。经过一些研究,我尝试做这样的事情:
header('Location: other_page.com', TRUE, 307);
但这没有用。有什么建议么?我必须使用会话吗?
您需要附加要发送的数据作为 url (GET) 的一部分。重定向标头不支持 POST “重定向”。
根据您要发送到其他页面的数据量,这可能会或可能不会在您的情况下起作用。
如果您正在提交表单,还请注意,如果您将“action”属性添加到表单元素,您可以指定不同的域,并且 POST 请求将直接到达那里。