gpt4 book ai didi

haskell - 为什么这在 GHCi 中有效但在 Scotty 中无效?

转载 作者:行者123 更新时间:2023-12-02 08:27:09 25 4
gpt4 key购买 nike

我正在尝试制作一个列出给定目录内容的网页,但我遇到了一个奇怪的问题:当我在 GHCi 中逐行运行代码时,代码会产生所需的输出,但是当它被执行时在正在运行的 Scotty 实例中,它会产生不同的(错误的)输出。这是代码的相关部分:

serveDir :: String -> ActionM ()
serveDir p = do let path = prefix ++ p
entries <- liftIO $ getDirectoryContents path
fs <- liftIO $ filterM (doesFileExist . ((++) prefix)) entries
ds <- liftIO $ filterM (doesDirectoryExist . ((++) prefix)) entries
liftIO $ print path >> print entries >> print fs >> print ds
blaze $ renderDir fs ds
where prefix = "static/"

(do 语句中的最后一行只是将其呈现为 html。这有效,但正确的输出永远不会到达该函数)当我在 GHCi 中运行这个函数的每一行时,我得到以下输出:

*Main> entries <- getDirectoryContents "static/stuff"
*Main> fs <- liftIO $ filterM (doesFileExist . ((++) "static/stuff/")) entries
*Main> ds <- liftIO $ filterM (doesDirectoryExist . ((++) "static/stuff/")) entries
*Main> liftIO $ print entries >> print fs >> print ds
["..","hello","bye","someDir","."]
["hello","bye"]
["..","someDir","."]

这正是我所期待的。但是当这个函数从 Scotty 运行时,称为 serveDir "stuff/",我得到这个输出:

"static/stuff/"
["..","hello","bye","someDir","."]
[]
["..","."]

这里发生了什么?我知道 ActionM 是 MonadIO 的一个实例,否则无法编译。我有点不知所措。有人可以对此有所了解或提出建议吗?其余代码可根据要求提供,但我可以说我正在使用 wai-middleware-static 来允许静态文件请求,并且其他函数中来自该目录的其他文件请求有效。

最佳答案

fs <- liftIO $ filterM (doesFileExist . ((++) prefix)) entries

不应该是 (++) 路径吗?

关于haskell - 为什么这在 GHCi 中有效但在 Scotty 中无效?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31055102/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com