0

我在我的项目中使用 FOSCommentBundle,我已经为它配置了一个线程和一个评论类,这正在工作。但现在我需要管理多种类型的线程和评论。

例如,我有带有评论的新闻和带有评论的内容。当然,新闻评论不同于内容评论。

我不知道如何在 config.yml 中做到这一点:

fos_comment:
    db_driver: orm
    class:
        model:
            comment: Project\MyBundle\Entity\News
            thread: Project\MyBundle\Entity\Comment

如何添加我的其他线程/评论类型?或者我该如何处理这种情况?

4

1 回答 1

0

在您要使用 FOSCommentBundle 的模板中,您必须输入以下代码:

{% include 'FOSCommentBundle:Thread:async.html.twig' with {'id': 'foo'} %}

因此,在部分中,{'id':'foo'}您可以为您想要的任何线程放置不同的 id,甚至为任何新闻添加不同的线程,例如

{% include 'FOSCommentBundle:Thread:async.html.twig' with {'id': 'news'~news.id} %}
于 2016-10-31T15:09:40.127 回答