2
我想執行一個簡單的操作,帶我小時在Erlang和ChicagoBoss解決:二郎ChicagoBoss傳遞網址,以獲取參數
這裏是網址: http://example.com?string=some+string
期望的結果:
一些字符串
/controllers/index/example_index_controllers.erl
-module(example_index_controller, [Req, SessionID]).
-compile([export_all]).
index('GET', []) ->
Parameter = Req:query_param("string"),
{ok, [{data, Parameter }]}.
結果: /views/index/index.html
<b>{{ data }}</b>