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.
在我的应用程序中,我使用 GET 方法获取 Excel 文件。url 实际上包含服务器生成 Excel 文件所需的参数。但是,有时,参数可能会变得很长(超过 2000 个字符)。
我正在考虑使用 POST 方法,但似乎 POST 方法不能返回文档。我对吗?
不,您如何请求,比如说GET,PUT和POST,并不一定会影响您响应的服务器。
GET
PUT
POST
如何做出响应取决于服务器上的程序。如果您想在 POST 请求后发送二进制文件,那是非常酷的。
只需看看 megaupload、rapidshare 等网站。在您POST输入验证码后,它们都会向您发送一个文件。