1

我想从浏览器下载文件,我尝试通过牛仔来实现,但是我失败了,浏览器显示“从服务器收到重复标头。”。我不知道,请大家帮帮我。这是我的处理程序代码:`

%% @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.`
4

2 回答 2

2

Cowboy 有一个用于提供静态文件的内置处理程序。它记录在这里:

http://ninenines.eu/docs/en/cowboy/HEAD/guide/static_handlers/

github上有一个例子:

https://github.com/ninenines/cowboy/tree/master/examples/static_world/src

这样,您不必手动设置标题,这应该可以防止错误。

于 2014-08-25T09:18:23.707 回答
2

这对于 OP 来说显然为时已晚,但也许它会帮助有人从谷歌找到这个。

您的问题是您正在覆盖您使用函数设置的响应正文set_resp_body_fun函数cowboy_req:reply/4。您需要做的就是用cowboy_req:reply/3没有明确设置正文的调用替换该行

cowboy_req:reply(200, [
    {<<"content-type">>, <<"application/octet-stream">>}
], Req6);

你应该会发现它有效。

于 2016-02-15T20:43:55.630 回答