gpt4 book ai didi

http - 如何在 Julia 中使用 Genie.jl 收集 HTTP 响应状态

转载 作者:行者123 更新时间:2023-12-04 07:27:52 27 4
gpt4 key购买 nike

如何收集脚本的 HTTP 响应状态?
下面是一个示例代码,它将启动一个服务器并允许两条交互路径。

using Genie
import Genie.Router: route
import Genie.Renderer.Json: json

Genie.config.run_as_server = true

route("/try/", method=GET) do
(:message => "Welcome") |> json
end

route("/test/", method=POST) do
data = jsonpayload()
<body>
end
Genie.startup()
如何收集响应状态,如 200 , 500或其他人作为字符串变量?

最佳答案

使用 HTTP 打开与服务器的连接并查找状态字段:

julia> using HTTP

julia> response = HTTP.get("http://127.0.0.1:8000/try")
HTTP.Messages.Response:
"""
HTTP/1.1 200 OK
Content-Type: application/json; charset=utf-8
Server: Genie/1.18.1/Julia/1.6.1
Transfer-Encoding: chunked

{"message":"Welcome"}"""

julia> response.status
200
如果您想自己控制状态,可以在服务器端添加:
 route("/tryerror/", method=GET) do
Genie.Responses.setstatus(503)
end
现在让我们测试 503 :
julia> response = HTTP.get("http://127.0.0.1:8000/tryerror")
ERROR: HTTP.ExceptionRequest.StatusError(503, "GET", "/tryerror", HTTP.Messages.Response:
"""
HTTP/1.1 503 Service Unavailable
Content-Type:
Server: Genie/1.18.1/Julia/1.6.1
Transfer-Encoding: chunked

""")

关于http - 如何在 Julia 中使用 Genie.jl 收集 HTTP 响应状态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68127425/

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