gpt4 book ai didi

f# - 重定向似乎不适用于 Suave

转载 作者:行者123 更新时间:2023-12-01 06:05:42 24 4
gpt4 key购买 nike

我尝试重定向到路径为“/hello”的 index.html 页面 >>= redirect “index.html”,但它一直显示错误 No data received ERR_EMPTY_RESPONSE。

最佳答案

我认为 Suave 中的重定向没有任何问题。以下对我来说很好用:

#r @"packages/Suave/lib/net40/Suave.dll"
open Suave
open Suave.Web
open Suave.Http
open Suave.Http.Applicatives

choose
[ path "/index.html" >>= Successful.OK "Hello"
path "/redir" >>= Redirection.redirect "/index.html" ]
|> startWebServer defaultConfig

正如 Fyodor 在评论中提到的,我会检查您的 index.html 处理程序是否正常工作。您还可以在 Fiddler 或 Chrome 开发工具中检查返回的重定向 header 。

关于f# - 重定向似乎不适用于 Suave,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33581430/

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