sprinfall / webcc

Lightweight C++ HTTP client and server library based on Asio for embedding purpose.
GNU Lesser General Public License v3.0
270 stars 61 forks source link

How to upload multi-files or response with multi-files? #10

Open zhangmGoL opened 4 years ago

zhangmGoL commented 4 years ago

As shown in title, if I want to upload or respond multi-files, how to implement these functions?

Thanks~~

sprinfall commented 4 years ago

你是指 multipart form data?

zhangmGoL commented 4 years ago

你是指 multipart form data?

是的啊~~,如果提交多表单数据,有参考的代码可以show一下吗,我再项目中有这样的需求

sprinfall commented 4 years ago

Form client: https://github.com/sprinfall/webcc/blob/master/examples/form_client.cc Form server: https://github.com/sprinfall/webcc/blob/master/examples/form_server.cc 请参考上面这两个例子。