{{ dump(memory.memoryImages) }}
不確定的指數給我: Symfony的枝條,爲持久化集合
但
{{ dump(memory.memoryImages.getValues) }}
或
{{ dump(memory.memoryImages.first) }}
或
{% for memoryImage in memory.memoryImages %}
...
{% endfor %}
所有給我:(「:未定義指數:內存通知」)的模板 的渲染過程中
異常被拋出。
如何從memoryImages
獲得memoryImage
?我可能錯誤地配置了原則映射嗎?
實體內存有一個一對多的關係:
oneToMany:
memoryImages:
targetEntity: MemoryImage
mappedBy: Memory
cascade: ["persist", "remove"]
和MemoryImages實體具有多對一關係:
manyToOne:
memory:
targetEntity: Memory
inversedBy: memorieImages
joinColumn:
name: memory_id
referencedColumnName: id
檢查你的映射文件。內存而不是內存?問候 – Albeis
@Albeis更新問題與相關的映射部分... – caramba
嘗試mappedBy:內存 – Albeis