我正在尝试覆盖as_json
课程中的Edge
方法,以便我可以在其中包含x
和y
坐标。 {1}}。
这些分析是这样的:
Vertex
和Edge belongs_to :from
Vertex。
:to
,其中Vertex has_many :edges
和:x
是字段。
我尝试了几种语法变体,如下所示,但无法使其发挥作用。谢谢你的帮助!
:y
答案 0 :(得分:1)
我认为您应该使用以下内容:
super only: [:name, :value, :color],
include: {
from: { only: [:x, :y] },
to: { only: [:x, :y] }
}