如何在树枝中打印可翻译的值(学说扩展)



我正在使用可翻译的

它可以根据当前区域设置直接处理数据。

但是,我想有时忽略区域设置来访问每个数据。

在对卧槽中。

我可以像这样访问每个数据。

    $transRepo = $em->getRepository('GedmoTranslatableEntityTranslation');
    $repo = $transRepo->findTranslations($myEntity);
    var_dump($repo['en']['comment']);

那么,有没有办法在树枝中获取每种语言的数据?

{{comment}} // it shows the comment depending on the locale setting.
{{comment | trancelate(en)}} // I want to ignore the locale setting like this.

如何将翻译传递到您的 Twig 模板,因为您需要显示它们:

$translations = $repository->findTranslations($article);

然后在您的 Twig 模板中,您可以执行以下操作:

{{ translations.en.comment }}
{{ translations.de.comment }}
{{ translations.fr.comment }}

官方文档可能会有所帮助。

相关内容

  • 没有找到相关文章

最新更新