Network.Wai
andを使用して POST リクエストからデータを取得するにはどうすればよいですWarp
か?
たとえば、単純な Web ページがあるとします。
....
<form method="POST" action="/handlepost">
<input name="name" type="text" />
<input type="submit" />
</form>
....
ユーザーが送信をクリックしたときに、このデータを取得するにはどうすればよいですか? GET データを取得する方法を知っています ( queryString
)
例えば
app :: Application
app request = case rawPathInfo request of
"/" -> return $ displayForm
"/handlePost" -> return $ handlepost
_ -> return $ notFound
displayForm :: Response
displayForm = ResponseBuilder
status200
[("Content-Type", "text/html")] $
fromByteString "<form method='POST' action='/handlepost'><input name="name" type="text" /><input type='submit'></form>"
handlePost :: Request -> Response
handlePost req = undefined -- how do I examine the contents of POST?