我正在使用nelmio / alice bundle加载yaml文件。
当包含多对多关系的第二个实体时,有一种奇怪的行为。当运行load命令时,它会抛出一个警告:
[Symfony \ Component \ Debug \ Exception \ ContextErrorException]警告: copy(http://lorempixel.com/640/480/?35984):无法打开流: 不可能建立联系..
yaml文件代码如下:
AppBundle\Entity\ComponentInstance:
componentInstance_{1..30}:
componentCode: <componentInstanceCode()>
componentId: <numberBetween(1,50)>
sectionInstance: '@sectionInstance_*'
date: <datetime()>
images: '@componentImage_{1..2}'
AppBundle\Entity\ComponentImage:
componentImage_{1..4}:
imageName: <name()>
imagePath: <image()>
imageAlt: <text()>
width: <numberBetween(100,500)>
height: <numberBetween(100,500)>
components: '@componentInstance_{1..2}'
当我在ComponentImage部分上发表评论时,它的工作没有任何问题。 整个项目中没有该网址的跟踪。
image()
功能如下:
public function images()
{
$genera = [
'/images/color_pencils.jpg',
'/images/half_color_pencils.jpg',
'/images/rainbow_wood.bmp',
'/images/color_smoke.jpg'
];
$key = array_rand($genera);
return $genera[$key];
}
有什么建议吗?
答案 0 :(得分:1)
问题出现了几个元素的混合。
我打错了
imagePath: <image()>
而不是<images()>
第二个也是更令人困惑的一点是,<image()>
是nelmio / alice bundle的保留关键字,它会自动生成http://lorempixel.com的网址
通过调用正确的函数,它可以正确加载数据