gpt4 book ai didi

ruby-on-rails - 如何区分请求

转载 作者:数据小太阳 更新时间:2023-10-29 07:54:08 25 4
gpt4 key购买 nike

我正在创建一个 API,我想区分 GET、DELETE、MODIFY 和 POST 请求。

是否可以将其与 Controller 区分开来?

例如:

区分:(GET REQUEST)

GET http://myapi.com/POST/1234

来自删除请求

DELETE http://myapi.com/POST/1234

我可以从 post controller 做到这一点吗?

谢谢

最佳答案

在 Controller 操作方法中,执行:

request.method

它将说明使用了哪种 HTTP 方法。

您还可以使用:

request.get?
request.post?
request.delete?

等等。

有关类(class)的完整文档,check here .

关于ruby-on-rails - 如何区分请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6822701/

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