gpt4 book ai didi

ruby-on-rails - Phoenix Rails 的 'head :ok' 相当于什么?

转载 作者:行者123 更新时间:2023-12-03 19:59:50 25 4
gpt4 key购买 nike

我想返回一个没有内容(只是标题)的响应,如 this one

def show
head :ok
end

最佳答案

您可以使用Plug.Conn.send_resp/3空的 body :

# 200 OK
send_resp(conn, 200, "")
send_resp(conn, :ok, "") # same as above
# 401 Unauthorized
send_resp(conn, 401, "")
send_resp(conn, :unauthorized, "") # same as above
send_resp可以将状态(第二个参数)作为整数或此处提到的受支持原子之一: https://hexdocs.pm/plug/Plug.Conn.Status.html#code/1 .

关于ruby-on-rails - Phoenix Rails 的 'head :ok' 相当于什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37317594/

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