标签: rails-api
在带有active_model_serializers的Rails 5 API应用程序中,我只能为一个模型发送包含include选项的响应,并且它可以正常工作:
include
UsersController json: @current_user, status: :ok, include: 'shop'
用户 belongs_to 购物,以及购物 has_one 地址
belongs_to
has_one
如何将与商店相关联的地址包含在响应中? 谢谢。