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.
我正在尝试重定向/转发 Pylons 请求。使用 redirect_to 的问题是表单数据被丢弃。我需要保持 POST 表单数据以及所有请求标头的完整性。
有没有一种简单的方法可以做到这一点?
从 POST 接收数据取决于 Web 浏览器一起发送数据。当 Web 浏览器收到重定向时,它不会重新发送该数据。一种解决方案是对要保留的数据进行 URL 编码,并将其与 GET 一起使用。在最坏的情况下,您始终可以将要保留的数据添加到会话中并以这种方式传递。