How does HTTP file upload work?

后端 未结 5 1501
不思量自难忘°
不思量自难忘° 2020-11-22 00:49

When I submit a simple form like this with a file attached:

5条回答
  •  悲&欢浪女
    2020-11-22 01:16

    An HTTP message may have a body of data sent after the header lines. In a response, this is where the requested resource is returned to the client (the most common use of the message body), or perhaps explanatory text if there's an error. In a request, this is where user-entered data or uploaded files are sent to the server.

    http://www.tutorialspoint.com/http/http_messages.htm

提交回复
热议问题