我正在使用可翻译的
它可以根据当前的语言环境设置直接处理数据。
但是,有时我想通过忽略语言环境设置来访问每个数据。
在控制器中。
我可以像这样访问每个数据。
$transRepo = $em->getRepository('Gedmo\Translatable\Entity\Translation');
$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.