symfony3でcreateForm methodeを使用してコントローラのカスタムフォームタイプにパラメータを渡すにはどうすればよいですか? BannerController.phpで警告:BannerType :: __ construct()の引数1がありません
public function __construct($type){
$this->type = $type;
}
public function configureOptions(OptionsResolver $resolver)
{
$resolver->setDefaults(array(
'data_class' => 'Banner\BannerBundle\Entity\Banner',
'type' => null,
));
}
:
$form = $this->createForm(BannerType::class, $entity, array(
'typee' => $type,
));
createFormパラメータに 'type'ではなく 'typee'を入力しています。 – Starspire
ありがとうございますが、タイプミスです 影響がありません – mahdi