*response << "HTTP/1.1 200 OK\r\nContent-Length: " << success.length();
*response << "\r\nContent-Type: application/octet-stream";
*response << "\r\nContent-Disposition: attachment; filename=\"" << filename << '"';
*response << "\r\n\r\n" << success;
我设置了这样的响应头,让浏览器从服务器下载结果,而不是直接显示结果。但它无法按预期显示下载框,浏览器显示&#34;无法显示类型&#34; application / octet-stream&#34;&#34;的响应。
有谁知道如何解决这个问题?非常感谢!