大家好我正在尝试将数字输入添加到奏鸣曲编辑/创建页面但我有错误。这是我的文件: Product.php
/**
* @ORM\Column(type="decimal", scale=2)
*/
private $price;
ProductAdmin.php
$formMapper
->with('Content', ['class' => 'col-md-9'])
->add('price', NumberType::class)
当我提交表格时,我得到了这个:
Expected argument of type "double", "double" given
500 Internal Server Error - InvalidArgumentException
我尝试填写12.00 12,00 12
,但我一直都会收到此错误。哪个问题我不知道。我是symfony和奏鸣曲的新手。