我有 2 个实体
AlienImage.cfc MonsterImage.cfc
这两个实体都继承自包含图像名称的 Image.cfc。
我的问题是,当我使用以下内容时....
World.cfc 属性名称="图像" 奇异名称="图像" 类型="数组" 字段类型="一对多" cfc="AlienImage" fkcolumn="worldID" cascade="all" remotingFetch="true";
当我在这种关系上加载 world.cfc remotingFetch 时,也应该带回图像名称,因为 AlienImage 扩展了 image.cfc,但现在图像是空白的,为什么?
这是 CF ORM 中的错误吗????
"DATA": [
{
"worldname": "some world",
"images": [
{}
],
}
],