在我的模型中,我有:
* @method Doctrine_Collection getComments() Returns the current record's "Comments" collection
默认如果我生成管理员,那么这不会显示在列表中。如果在 generator.yml 中:
config:
actions: ~
fields: ~
list:
display: [id, title, comments]
filter: ~
form: ~
edit: ~
new: ~
然后这个给我看
<pre> Doctrine_Collection data : Array( ) </pre>
而不是评论列表。
我知道 - 我可以从缓存中获取文件并显示这个,但也许这只有generator.yml才有可能?例如,如果我有一对多的关系,那么这会告诉我这个名字。
我不想为此使用缓存!谢谢!