0
railsではリクエストに応じて "head:ok"を送信するのが一般的です。 (https://github.com/search?l=Ruby&p=7&q=%22head+%3Aok%22&type=Code&utf8=%E2%9C%93)rails: "head:ok"レスポンスにいくつかのデータを添付してください
jsonハッシュを一緒に送ることはできますか?
railsではリクエストに応じて "head:ok"を送信するのが一般的です。 (https://github.com/search?l=Ruby&p=7&q=%22head+%3Aok%22&type=Code&utf8=%E2%9C%93)rails: "head:ok"レスポンスにいくつかのデータを添付してください
jsonハッシュを一緒に送ることはできますか?
jsonハッシュを送信することはできますか?
号
head :ok
sets render
to return an empty response (so just the header, no body) with status 200.head :ok
render nothing: true, status: :ok
の省略形です。
Here's a list of all the :status
options you can use for setting the appropriate status code.
nice answer! Зелёный –