0
ネストされたケースのコントローラーにロケーションヘッダーを追加したいと思います。 私はRailsにロケーションヘッダを追加する方法を知っています。Rails 4はロケーションヘッダーを追加します
render json: json_body, status: 201, location: 'accounts'# :ok
ルーティングがネストされている場合、どのようにケースに対処できますか。正しいルート名を見つけるために
render json: json_body, status: 201, location: subscriptions_account_url(@account)
実行rake routes
:
# routing
/api/v1/accounts/:account_id/subscriptions(.:format)