如何在 WAI (Warp) 应用程序内执行 IO

发布于 2024-12-10 02:41:54 字数 458 浏览 0 评论 0原文

我有一个简单的 WAI 应用程序(在本例中为 Warp),它用“Hi”响应所有 Web 请求。我还希望它在每次处理请求时在服务器上显示“Said hi”。如何在 WAI 响应处理程序中执行 IO?这是我的申请:

{-# LANGUAGE OverloadedStrings #-}
import Network.Wai
import Network.HTTP.Types (status200)
import Network.Wai.Handler.Warp (run)

main :: IO ()
main = do
    putStrLn "http://localhost:3000/"
    run 3000 app

app :: Application
app _ = return hello

hello = responseLBS status200 [("Content-Type", "text/plain")] "Hi"

I have a simple WAI application (Warp in this case) that responds to all web requests with "Hi". I also want it to display "Said hi" on the server each time a request is processed. How do I perform IO inside my WAI response handler? Here's my application:

{-# LANGUAGE OverloadedStrings #-}
import Network.Wai
import Network.HTTP.Types (status200)
import Network.Wai.Handler.Warp (run)

main :: IO ()
main = do
    putStrLn "http://localhost:3000/"
    run 3000 app

app :: Application
app _ = return hello

hello = responseLBS status200 [("Content-Type", "text/plain")] "Hi"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

毁梦 2024-12-17 02:41:54

WAI 应用程序的类型是:

type Application = Request -> Iteratee ByteString IO Response

这意味着 WAI 应用程序在 IO 上的 Iteratee monad 转换器中运行,因此您必须使用 liftIO code> 执行常规 IO 操作。

import Control.Monad.Trans

app _ = do
    liftIO $ putStrLn "Said hi"
    return hello

The type of a WAI application is:

type Application = Request -> Iteratee ByteString IO Response

This means that a WAI application runs in an Iteratee monad transformer over IO, so you'll have to use liftIO to perform regular IO actions.

import Control.Monad.Trans

app _ = do
    liftIO $ putStrLn "Said hi"
    return hello
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文