3

简而言之:

我正在尝试通过 jQuery 触发外部事件,从而导致 Drupal 表单上的 AJAX 回调被执行。这将重建几个链式元素。它工作一次,然后中断,直到表单被 Drupal 中的不同元素刷新。

form_state 在第一次尝试时检测到正确的元素作为触发元素,但之后默认为 form_state['buttons'] 数组中的第一个可用按钮。有什么想法吗?

详细地:

我有一个复杂的 Drupal 表单,如下所示:

一个(下拉)

B(实际上是B_key和B_literal,2个文本字段)C(下拉)D(下拉)E(下拉)

其中A刷新B,B刷新C,C刷新D,以此类推。除了 B 之外,这些都是下拉元素。每个项目都是一个 key => value 对,我们使用 key 来重建它刷新的元素中的选项。因此,B 的键刷新了 C 中的选项,因为 C 的键用于 D 的选项。

这些完全构建为 Drupal AJAX 回调,并且可以正常工作。但是,B 不是选择,而是 2 个单独的文本字段,1 个是键,1 个是文字。我们这样做是为了对 B 进行 AJAX 自动完成查找,因为列表太大而无法使用选择元素。

我编写了一个外部 jQuery 脚本来执行此查找,并填充这两个字段(B_key 和 B_literal)。一旦我们填充它们,我们就会触发一个自定义事件,由字段的 'ajax' => 'event' => 'hs_changed' 引用,我们在 jQuery 中使用 jQuery('[name=b_literal]').trigger 手动触发该事件()。这在我第一次执行此操作时有效,导致 C 使用一组新选项进行重建。

但是,一旦这种情况发生一次,它就不再重建。我追踪了 form_state,并注意到当为 B 选择一个新值时,表单状态认为一个按钮已被单击(以 form_state['buttons'] 数组中的第一个按钮为准),导致此操作失败。

现在,当我重新加载 A 时,这通常具有 B 的预设值,因此所有子字段(B、C、D、E)都会正确刷新。一旦发生这种情况,我可以再次手动选择 B,它会像以前写的那样工作,如果我们再试一次就会失败。应该注意的是,我的 jQuery 没有绑定问题,因为它仍然能够找到 B 的字段,并更新了值。它手动触发自定义事件(触发drupal字段的ajax),在我们第一次触发后每次都会失败。

这是我们的代码:

表格:

$form['a'] = array (
  '#type' => 'select',
  '#options' => $a_options,
  '#default_value' => $a_selected,
  '#required' => TRUE,
  '#prefix' => '<div id="a_wrapper">',
  '#suffix' => '</div>',
  '#ajax' => array(
    'callback' => 'a_ajax_callback',
    'method' => 'replace',
    'effect' => 'fade',
  ),
);

$form['b_key'] = array (
  '#type' => 'textfield',
  '#default_value' => $hierarchy['b_key'],
);

$form['b_literal'] = array (
  '#type' => 'textfield',
  '#default_value' => $hierarchy['b_literal'],
  '#size' => 32,
  '#required' => TRUE,
  '#ajax' => array(
    'callback' => 'b_ajax_callback',
    'method' => 'replace',
    'effect' => 'fade',
    'event' => 'hs_changed',
  ),
  '#prefix' => '<div id="b_wrapper">',
  '#suffix' => '</div>',
);

$form['c'] = array (
  '#type' => 'select',
  '#default_value' => $hierarchy['c'],
  '#empty_option' => '- Select -',
  '#options' => get_children_options_array($hierarchy['b_key'], TRUE),
  '#ajax' => array(
    'callback' => 'c_ajax_callback',
    'method' => 'replace',
    'effect' => 'fade',
  ),
  '#required' => TRUE,
  '#prefix' => '<div id="c_wrapper">',
  '#suffix' => '</div>',
);

//Assume D and E are identical to C

回调:

 function a_ajax_callback($form, &$form_state) {

   //Return the field to be rebuilt by the AJAX request  $commands = array();
   $commands[] = ajax_command_replace("#b_key_wrapper", render($form['b_key']));
   $commands[] = ajax_command_replace("#b_literal_wrapper", render($form['b_literal']));

   //We also unset a bunch of form_state['input'] values and such here

   return array('#type' => 'ajax', '#commands' => $commands);
 }

 //The b_ajax_callback and c_ajax_callback are pretty much identical

jQuery:

jQuery(document).on("focus", '[name=my_search]:not(.ui-autocomplete-input)', function() { 
  jQuery(this).autocomplete({
    source: function(req, res) {
      ch_search(req, res);
    },
    minLength: 3,
    select: function(event, ui) {
      ch_render_dropdowns(ui.item.id);
    }
  }); 
});

function ch_render_dropdowns(ch_node) {

  var token = jQuery('[name=ajax_token]').val();

  jQuery.ajax({
    url: '/ajax/myFunction/' + ch_node
    async: false,
    cache: false,
    data: {
      'token': token
    },
    success: function(data) {

      jQuery('#autoComplete_logic').html(data);
      jQuery('#autoComplete_logic').hide();

      // Once we have the initial results, fill in the d7 form fields
      // where we have values.
      var b_key = jQuery("#b_key").val();
      var b_name = jQuery("#b_literal").text();

      // Set our Drupal B Fields
      jQuery('[name=b_key]').val(b_key);
      jQuery('[name=b_literal]').val(b_name);

      //Trigger the refresh of all submenus in Drupal
      //This triggers the AJAX callback attached to the b_literal 
      //to rebuild c, d, and e.
      jQuery('[name=b]').trigger('hs_changed');
    }
  });
}

我已经简化了一切,因为有很多逻辑超出了这个问题的范围。自动完成不是问题。触发 b_literal 字段附加的 Drupal AJAX 激活,导致刷新 c、d 和 e,在第一次之后不起作用,除非我们点击字段 a,它通过 Drupal 的 Form API 在内部刷新了 b、c、d 和 e AJAX 逻辑。

Form_state(第一次正确执行):

[triggering_element] => 数组 ( [#type] => 文本字段 [#title] => B [#description] => [#default_value] => [#size] => 32 [#maxlength] => 255 [#required ] => 1 [#disabled] => [#ajax] => 数组 ( [callback] => b_ajax_callback [method] => replace [effect] => fade [event] => hs_changed )

        [#prefix] => <div id="b_literal_wrapper">
        [#suffix] => </div>
        [#input] => 1
        [#autocomplete_path] => 
        [#process] => Array
            (
                [0] => ajax_process_form
            )

        [#theme] => textfield
        [#theme_wrappers] => Array
            (
                [0] => form_element
            )

        [#pre_render] => Array
            (
                [0] => ctools_dependent_pre_render
            )

        [#defaults_loaded] => 1
        [#tree] => 
        [#parents] => Array
            (
                [0] => b
            )

        [#array_parents] => Array
            (
                [0] => b
            )

        [#weight] => 0.002
        [#processed] => 
        [#attributes] => Array
            (
            )

        [#title_display] => before
        [#id] => edit-b--4
        [#name] => b_literal
        [#value] => 
        [#needs_validation] => 1
    )

Form_state (第二次不正确执行,之后每次):

[triggering_element] => Array
    (
        [#type] => submit
        [#value] => Submit
        [#weight] => 100
        [#attributes] => Array
            (
                [class] => Array
                    (
                        [0] => btn
                        [1] => btn-primary
                    )

            )

        [#after_build] => Array
            (
                [0] => _load_assets_b_select
            )

        [#input] => 1
        [#name] => op
        [#button_type] => submit
        [#executes_submit_callback] => 1
        [#limit_validation_errors] => 
        [#process] => Array
            (
                [0] => ajax_process_form
            )

        [#theme_wrappers] => Array
            (
                [0] => button
            )

        [#defaults_loaded] => 1
        [#tree] => 
        [#parents] => Array
            (
                [0] => submit
            )

        [#array_parents] => Array
            (
                [0] => submit
            )

        [#processed] => 
        [#required] => 
        [#title_display] => before
        [#id] => edit-submit--2
    )

[clicked_button] => Array
    (
        [#type] => submit
        [#value] => Submit
        [#suffix] => </div></section>
        [#weight] => 100
        [#attributes] => Array
            (
                [class] => Array
                    (
                        [0] => btn
                        [1] => btn-primary
                    )

            )

        [#after_build] => Array
            (
                [0] => _load_assets_b_select
            )

        [#input] => 1
        [#name] => op
        [#button_type] => submit
        [#executes_submit_callback] => 1
        [#limit_validation_errors] => 
        [#process] => Array
            (
                [0] => ajax_process_form
            )

        [#theme_wrappers] => Array
            (
                [0] => button
            )

        [#defaults_loaded] => 1
        [#tree] => 
        [#parents] => Array
            (
                [0] => submit
            )

        [#array_parents] => Array
            (
                [0] => submit
            )

        [#processed] => 
        [#required] => 
        [#title_display] => before
        [#id] => edit-submit--2
    )
4

1 回答 1

2

我认为当您使用 jquery 自动完成时存在问题。而不是使用#autocomplete_pathDrupal 7 Form API中的Given,或使用以下链接可能会解决您的问题#autocomplete_path

于 2012-12-10T08:45:35.437 回答