我正在尝试将模型的关联序列化为关联模型的 ID(int)数组。我目前在 serializable_hash 中使用 :include 选项,如下所示:
:include => {:associated => {:only => [:id]}
至尊输出json像:
{"id":13, ...,"associated":[{"id":15,"associated":[]},{"id":14,"associated":[]}]}
不知道为什么关联的对象有一个“关联”键;但这不是很重要;我想要的是获得如下输出:
{"id":13, "associated":[15,14]}
我应该怎么做才能得到这个?