gpt4 book ai didi

controller - HTTP 状态代码作为 put_status 中的原子

转载 作者:行者123 更新时间:2023-12-04 16:28:44 25 4
gpt4 key购买 nike

我正在尝试使用 Phoenix 和 Elixir 编写 Controller 操作。当一切按计划进行时,我使用以下行设置 http 状态代码:

 put_status :ok

这对我来说是一个有意义的世界。它很好地映射到 200 http 代码。但是,我正在研究非绿色路径,并且终其一生都无法弄清楚用于其他 http 代码的原子。我在某处找到了对 :not_found 在线的引用,我假设它映射到 404。

我正在尝试返回 .目前,我可以通过以下方式完成工作:
put_status 422

但如果存在这样的事情,我宁愿使用适当的原子。

最佳答案

完整列表可在 documentation for Plug.Conn.Status 中找到。 .如您所料,422 是 :unprocessable_entity .

Known status codes

The following status codes can be given as atoms with their respective value shown next:

  • :continue - 100
  • :switching_protocols - 101
  • :processing - 102
  • :ok - 200
  • :created - 201
  • :accepted - 202
  • :non_authoritative_information - 203
  • :no_content - 204
  • :reset_content - 205
  • :partial_content - 206
  • :multi_status - 207
  • :already_reported - 208
  • :instance_manipulation_used - 226
  • :multiple_choices - 300
  • :moved_permanently - 301
  • :found - 302
  • :see_other - 303
  • :not_modified - 304
  • :use_proxy - 305
  • :reserved - 306
  • :temporary_redirect - 307
  • :permanent_redirect - 308
  • :bad_request - 400
  • :unauthorized - 401
  • :payment_required - 402
  • :forbidden - 403
  • :not_found - 404
  • :method_not_allowed - 405
  • :not_acceptable - 406
  • :proxy_authentication_required - 407
  • :request_timeout - 408
  • :conflict - 409
  • :gone - 410
  • :length_required - 411
  • :precondition_failed - 412
  • :request_entity_too_large - 413
  • :request_uri_too_long - 414
  • :unsupported_media_type - 415
  • :requested_range_not_satisfiable - 416
  • :expectation_failed - 417
  • :im_a_teapot - 418
  • :misdirected_request - 421
  • :unprocessable_entity - 422
  • :locked - 423
  • :failed_dependency - 424
  • :upgrade_required - 426
  • :precondition_required - 428
  • :too_many_requests - 429
  • :request_header_fields_too_large - 431
  • :internal_server_error - 500
  • :not_implemented - 501
  • :bad_gateway - 502
  • :service_unavailable - 503
  • :gateway_timeout - 504
  • :http_version_not_supported - 505
  • :variant_also_negotiates - 506
  • :insufficient_storage - 507
  • :loop_detected - 508
  • :not_extended - 510
  • :network_authentication_required - 511

关于controller - HTTP 状态代码作为 put_status 中的原子,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39272186/

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