“An illegal choice is detected…” error with dynamic dropdown select list I Drupal8
问题 I wrote this code for dynamic dropdown select list in hook_form_alter. Options are populated by an external DB. function car2db_annuncio_form_alter(&$form, FormStateInterface $form_state, $form_id) { if ($form_id == 'node_annuncio_form') { $options_type = car2db_annuncio_type_dropdown_options(); $form['field_marca']['#prefix'] = '<div id="field_marca">'; $form['field_marca']['#suffix'] = '</div>'; $form['field_tipologia']['widget']['#options'] = $options_type; $form['field_tipologia']['widget