doulan3436 2016-12-06 17:45
浏览 42
已采纳

SonataAdminBundle使用嵌套实体configureShowFields

For a project which uses symfony2 and the SonataAdminBundle, I am trying to figure out how to embed complete related entities in the show action.

To get more into detail, let's say I have a Article and a Comment. On the show view for the Article, I'd like to show each Comment with multiple properties as well as an EDIT on each and a CREATE to add another comment to that Article.

I was able to get it to get it to display a list of Comment entities which link to the Entity by using ->add('comments'), but that's not enough. I need to have the entity really embedded!

Is there a way to do this without coding it on our own? And if doing it manually is the only way, what's the best approach? Rewriting the template?

  • 写回答

1条回答 默认 最新

  • douza19870617 2016-12-06 20:59
    关注

    Simplest way is to specify a template for the collection:

    $showMapper->add('comments', 'collection', [
        'template' => 'YourBundle:SomePath:SubPath/show_comment_collection.html.twig',
    ]);
    

    Look to SonataAdminBundle:CRUD:base_show_field.html.twig for a template to use as an example. And, in that template, you can loop over the value variable. For example:

    {% block field %}
        <ul>
        {% for comment in value %}
            <li><a href="{{ path('some_route', {'id': comment.id}) }}">
                {{ comment.id }} - {{ comment.otherProperty}}</a>
            </li>
        {% else %}
            <li>No comments</li>
        {% endfor %}
        </ul>
    {% endblock %}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 oracle集群安装出bug
  • ¥15 关于#python#的问题:自动化测试
  • ¥20 问题请教!vue项目关于Nginx配置nonce安全策略的问题
  • ¥15 教务系统账号被盗号如何追溯设备
  • ¥20 delta降尺度方法,未来数据怎么降尺度
  • ¥15 c# 使用NPOI快速将datatable数据导入excel中指定sheet,要求快速高效
  • ¥15 再不同版本的系统上,TCP传输速度不一致
  • ¥15 高德地图点聚合中Marker的位置无法实时更新
  • ¥15 DIFY API Endpoint 问题。
  • ¥20 sub地址DHCP问题