嘿,我正在尝试让我正在制作的网站向用户发送cookie,然后显示网页。
所以我发现 http://alexmarandon.com/articles/mochiweb_tutorial/是唯一关于如何制作 cookie 的真正教程,但它对我来说似乎出错了。
我的循环看起来像这样(我的make_cookie、get_cookie_value、render_ok和get_username与他的相同,除了我使用"mename"作为键而不是"用户名"):
loop(Req, DocRoot) ->
"/" ++ Path = Req:get(path),
try
case dispatch(Req, valid_urls:urls()) of
none ->
case filelib:is_file(filename:join([DocRoot, Path])) of
true ->
%% If there's a static file, serve it
Req:serve_file(Path, DocRoot);
false ->
%% Otherwise the page is not found
case Req:get(method) of
Method when Method =:= 'GET'; Method =:= 'HEAD' ->
case Path of
"response" ->
QueryStringData = Req:parse_qs(),
Username = get_username(Req, QueryStringData),
Cookie = make_cookie(Username),
FindCookie = get_cookie_value(Req,"mename","Not Found."),
% render_ok(Req, [Cookie], greeting_dtl, [{username, Username}]),
Req:respond({200, [{"Content-Type", "text/html"}],
"<html><p>Webpage</p></hmtl>"});
_ ->
Req:not_found()
end
end
end;
Response ->
Response
end
catch
Type:What ->
Report = ["web request failed",
{path, Path},
{type, Type}, {what, What},
{trace, erlang:get_stacktrace()}],
error_logger:error_report(Report),
%% NOTE: mustache templates need because they are not awesome.
Req:respond({500, [{"Content-Type", "text/plain"}],
"request failed, sorryn"})
end.
我得到的错误是:
[error] "web request failed", path: "response", type: error, what: undef, trace: [{greeting_dtl,render,[[{username,"GET"}]],[]}
该错误似乎来自render_ok,但作为 Erlang-mochiweb 的新手,我不确定如何解决这个问题。
您render_ok
注释掉了,但之后文件没有编译。错误消息表明,它仍然调用greeting_dtl
。
我假设您使用的是 erlydtl,因为错误在 greeting_dtl
中。函数render
错误通常意味着您拼错了某些属性名称。检查您的模板在哪里,以及它是否有类似 {{ something.username }}
.注释掉它或更改为mename
(任何有意义的)。