本文介绍了如何使用Cowboy下载文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想从浏览器下载文件,并尝试通过牛仔来实现,但是失败了,浏览器向我显示从服务器接收到重复标头。我不知道,请大家帮助我。这是我的处理程序代码:
`
I want to download file from the browser and I try to achieve by cowboy, however I failed and the browser show me that "Repeat header received from the server.". I have no idea, everyone please help me. this is my code of handler:`
%% @doc GET echo handler.
-module(toppage_handler2).
-export([init/3]).
-export([handle/2]).
-export([terminate/3]).
init(_Transport, Req, []) ->
{ok, Req, undefined}.
handle(Req, State) ->
{Method, Req2} = cowboy_req:method(Req),
{Echo, Req3} = cowboy_req:qs_val(<<"echo">>, Req2),
{ok, Req4} = echo(Method, <<Echo/binary, " I am there ">>, Req3),
{ok, Req4, State}.
echo(<<"GET">>, undefined, Req) ->
cowboy_req:reply(400, [], <<"Missing echo parameter.">>, Req);
%% the main part of download the file is here
%% I just want to download the file README.md
echo(<<"GET">>, Echo, Req) ->
F = fun (Socket, Transport) ->
Transport:sendfile(Socket, "priv/README.md")
end,
Req2 = cowboy_req:set_resp_body_fun(1024, F, Req),
Req3 = cowboy_req:set_resp_header(<<"Content-Disposition">>, "GET", Req2),
Req4 = cowboy_req:set_resp_header(<<"attachment;filename=\"README.md\"">>, "GET", Req3),
Req5 = cowboy_req:set_resp_header(<<"Content-Length">>, "GET", Req4),
Req6 = cowboy_req:set_resp_header(<<"1024">>, "GET", Req5),
cowboy_req:reply(200, [
{<<"content-type">>, <<"application/octet-stream">>}
], "", Req6);
echo(_, _, Req) ->
%% Method not allowed.
cowboy_req:reply(405, Req).
terminate(_Reason, _Req, _State) ->
ok.`
推荐答案
牛仔有在用于提供静态文件的处理程序中。
记录在这里:
Cowboy has a built in handler for serving static files.It is documented here:
上有示例github:
and there is example on github:
这样,您不必设置标题,请手动输入,这样可以避免错误。
This way, you don't have to set headers manually, which should prevent the error.
这篇关于如何使用Cowboy下载文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!