我正在使用Symfony 3.4和SHFormBundle。当我想创建带有自动完成字段的表单时,出现错误:
Could not load type "genemu_jqueryautocomplete_text": class does not exist.
我的代码:
$builder
->add('code', 'genemu_jqueryautocomplete_text', [
'label' => false,
'required' => true,
'route_name' => 'pso_product_fast_code_ajax_tyre',
'configs' => [
'minLength' => 2,
],
]);
有些建议出了什么问题?