本文介绍了哪种HTTP方法用于文件下载?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在我的网站上,用户可以下载其文件.但是文件是使用PHP生成的.那么我应该使用什么HTTP方法来发送下载请求作为文件附件? GET还是POST?

In my site users can download their files. But files are generated by using PHP. So what's HTTP method should I use for sending request for download as file attachment? GET or POST?

推荐答案

GET用于被动检索文件,POST用于服务器上的更改信息.从客户端可以看出,服务器在此过程中做什么或不做什么都没有关系.

GET is for passively retrieving files, POST is for altering information on the server. This is as seen from the client, it doesn't matter what the server does or doesn't do in the process.

因此,除非您要更改请求中的某些服务器状态:GET.

So unless you're altering some server state in the request: GET.

这篇关于哪种HTTP方法用于文件下载?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-25 08:22