Redirect("http://localhost:8002/processrequest") 做了这件事之后localhost:8002 got 请求为get request not post。如何将此请求作为post请求重定向到服务器localhost:8002?
Redirect("http://localhost:8002/processrequest")
qvk1mo1f1#
您所期望的播放功能不受支持不是因为播放框架http层实现,而是因为重定向的http规范:当浏览器收到重定向时,它们会立即加载location头中提供的新url。它不打算更改请求方法。
1条答案
按热度按时间qvk1mo1f1#
您所期望的播放功能不受支持不是因为播放框架http层实现,而是因为重定向的http规范:
当浏览器收到重定向时,它们会立即加载location头中提供的新url。
它不打算更改请求方法。