4

我的捆绑包有问题DoctrineBehaviors。我正在尝试为没有法语翻译的实体获取特定语言(法语)的翻译。它返回后备语言,这对于前端来说是可以的,但我需要知道该语言是否有翻译,因为我需要填写我的后端。

我如何知道实体的字段是否被翻译成特定语言?

4

1 回答 1

0

使用Translatable实体,您可以获得特定实体(文档)已知的所有翻译。

$product = $this->getDoctrine()
    ->getRepository('AppBundle:Product')
    ->find($productId);

$repository = $this->getDoctrine()->getRepository('Gedmo\Translatable\Entity\Translation');
$translations = $repository->findTranslations($product);

该变量$translations现在包含一个键控数组,例如,

array(2) {
  ["en_US"]=>
  array(1) {
    ["name"]=>
    string(8) "Keyboard"
  }
  ["fr_FR"]=>
  array(1) {
    ["name"]=>
    string(7) "Clavier"
  }
}

找出实体是否被翻译可以现在只需检查语言环境是否在数组键中。

if (!array_key_exists('fr_FR', $translations)) {
    throw $this->createNotFoundException('product description not available in French');
}

请注意,Translatable实体不包含默认语言环境(除非您已设置setPersistDefaultLocaleTranslationtrue)。

于 2017-04-08T13:28:40.850 回答