Hautleook/AliceBundle fixture yml 配置与 randomElement faker 函数
Hautleook/AliceBundle fixture yml configuration with randomElement faker function
我正在尝试为 Hauleook/AliceBundle fixture 配置 yml 文件。
Project\MainBundle\Entity\Manager:
manager_{1..30}:
name: '<firstName()> <lastName()>'
profile_image: '9.jpg'
profile_image_thumb: '<randomElement(['9.jpg','10.jpg'])'
当我尝试 运行
时收到以下错误消息
bin/console hautelook:fixtures:load
[Nelmio\Alice\Exception\FixtureBuilder\ExpressionLanguage\LexException]
Could not lex the value "["10.jpg"".
你好像用的是3.0.0.beta版本可以降级到稳定版吗?
在 2.2.2 中,这个语法适用于我:
'<randomElement( ["1", "2"] )>'
我正在尝试为 Hauleook/AliceBundle fixture 配置 yml 文件。
Project\MainBundle\Entity\Manager:
manager_{1..30}:
name: '<firstName()> <lastName()>'
profile_image: '9.jpg'
profile_image_thumb: '<randomElement(['9.jpg','10.jpg'])'
当我尝试 运行
时收到以下错误消息bin/console hautelook:fixtures:load
[Nelmio\Alice\Exception\FixtureBuilder\ExpressionLanguage\LexException]
Could not lex the value "["10.jpg"".
你好像用的是3.0.0.beta版本可以降级到稳定版吗?
在 2.2.2 中,这个语法适用于我:
'<randomElement( ["1", "2"] )>'