2

问题:

在 Drupal 7 的 Form API 中,当使用 #AJAX 刷新字段时,验证的错误消息在整个页面刷新之前不会显示。我看到我刷新的字段在错误状态下突出显示,但用户直到为时已晚(他们重新加载页面或转到另一个页面)时才看到相关消息。

我开始在这个庄园中手动处理错误堆栈:Drupal.org -- Filter out specific errors during validation,但我有一个复杂的表格,并且完成这项任务的时间预算很少。必须有某种方法来刷新堆栈并向用户显示消息,而无需手动处理所有内容。

注意:我正在使用带有回调的多命令,因此使用它对我来说是一个选项。

  $commands[] = ajax_command_replace("#my_wrapper", render($form['test']['field_a']));
  $commands[] = ajax_command_replace("#another_wrapper", render($form['test']['field_b']));

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

想法?

4

2 回答 2

5

解决方案:

显然,当您使用多回调方法时,Drupal 不会为您刷新消息。您可以手动执行此操作,如下所示:

  // Remove the old messages div, clearing existing messages.
  $commands[] = ajax_command_remove('#messages');
  // Append a new messages div with our latest errors and messages.
  $commands[] = ajax_command_after('#header-region', '<div id="messages">' . theme('status_messages') . '</div>');

只需将其添加到您拥有的任何回调 commands[] 数组中,您就可以开始了。

感谢Drupal.org——AJAX 命令和 Drupal 消息的正确方向!

于 2013-05-16T16:40:48.760 回答
3

谢谢阿托莫克斯!对于那些还没有使用多命令的人来说,这只是一个更完整的例子:

 $form['ld']['letterdrop_allocations_submit'] = array(
     '#type' => 'submit',
     '#value' => 'Letterdrop allocations update',
     //        '#name' => 'Letterdrop allocations update',
     '#name' => 'agc_letterdrop_submit',
     '#ajax' => array(
       'callback' => 'agc_ems_form_letterdrop_submit_ajax',
       ),
     );

 ...

function agc_ems_form_letterdrop_submit_ajax($form, &$form_state) { 
  drupal_set_message('here i am world', 'ok'); 
  $commands = array(); 
  $commands[] = ajax_command_replace('#messages', 
      '<div id="messages">' . theme('status_messages') . '</div>'); 
  $commands[] = ajax_command_alert('submitted via handler'); 
  return array( 
      '#type' => 'ajax', 
      '#commands' => $commands); 
} 

也更简洁一些,并消除了消息位于标题区域下方的假设:

$commands[] = ajax_command_replace('#messages', '<div id="messages">' . theme('status_messages') . '</div>');
于 2013-10-24T04:30:00.890 回答