同样,这里的n00b :使用以下代码尝试Warp和WAI,如文档中所示。
{-# LANGUAGE OverloadedStrings, DeriveGeneric #-}
import Network.Wai
import Network.HTTP.Types
import Network.Wai.Handler.Warp (run)
app3 :: Application
app3 request respond = respond $ case rawPathInfo request of
"/" -> index
"/raw/" -> plainIndex
_ -> notFound
plainIndex :: Response
plainIndex = responseFile
status200
[("Content-Type", "text/plain")]
"index.html"
Nothing
notFound :: Response
notFound = responseLBS
status404
[("Content-Type", "text/plain")]
"404 - Not Found"在plainIndex中运行GHCi返回:
<interactive>:12:1: error:
• No instance for (Show Response) arising from a use of ‘print’
• In a stmt of an interactive GHCi command: print it
*Main> :r
[1 of 1] Compiling Main ( WAI.hs, interpreted )一个问题中有两个问题:你能帮我解决这个问题吗?我是唯一一个经常遇到这样的问题的人。
发布于 2018-12-04 16:59:57
在plainIndex中运行GHCi,GHCi尝试计算Response,然后在终端中打印。Show实例定义了如何将给定类型表示为String。库作者选择不为Response提供Response实例,可能是为了将其表示与接口分离。
响应的各个部分都有Show实例,因此可以使用Wai提供的访问器
> responseStatus plainIndex
> responseHeaders plainIndex更多的供答复的文件。
https://stackoverflow.com/questions/53612336
复制相似问题