0

我有一个控制器动作,比如

public function updateAction()
    {
        $em = $this->getDoctrine()->getManager();
        $codesArray=array('AFGHANISTAN;AF','ÅLAND ISLANDS;AX','ALBANIA;AL');
        foreach ($codesArray as $detail)
        {
            $detailArray=explode(";",$detail);
            $country=$em->getRepository('TestBundle:Countries')
                          ->findOneBy(array('name'=>$detailArray[0]));
            $country->setCode($detailArray[1]);
        }
        $em->flush();
    }

它显示错误

FatalErrorException: Error: Call to a member function setCode() on a non-object

但是当我更换

$country=$em->getRepository('TestBundle:Countries')
                          ->findOneBy(array('name'=>$detailArray[0]));

$country=$em->getRepository('TestBundle:Countries')
                              ->find('1');

意味着它将更新第一条记录。请给我解决方案。

4

1 回答 1

0

存储库(和实体)名称通常是单数。

如果您的实体类是 Country 您将获得您的存储库:

 $country=$em->getRepository('TestBundle:Country')-> ...

我不知道您要做什么,但是您可以从 symfony2 Intl 组件中获取这些国家/地区代码...

use Symfony\Component\Intl\Intl;

\Locale::setDefault('en');

$countries = Intl::getRegionBundle()->getCountryNames();
// => array('AF' => 'Afghanistan', ...)

$country = Intl::getRegionBundle()->getCountryName('GB');
// => 'United Kingdom'
于 2013-05-27T10:15:07.073 回答