php - Drupal 8 Ajax 忘记表单更改

标签 php ajax drupal widget drupal-8

我在 drupal 8 中修改表单时遇到多个 AJAX 请求的问题。

让我解释一下——我一直在尝试在 drupal 中构建一个测验模块,并决定使用一个小部件来创建数量可变的测验问题,在这个问题小部件中是一个可能的答案列表。 我在我的问题小部件中创建了一个 AJAX 按钮,它允许删除答案并且它在第一次提交时工作,但由于某种原因我第二次运行 ajax 调用时表单被重置(就像没有进行任何更改一样,并且没有删除任何答案)。我在取消设置答案后以及第二次运行 ajax 回调时调试了表单数组。

启用 ajax 的按钮使用默认的 ajax 替换方法,我尝试了在我的 AJAX 回调中返回表单(减去答案)的不同方法,包括简单地取消设置选定的表单元素并返回表单,以及使用 AjaxResponse和 HtmlCommand 类。我还尝试通过 formbuilder 重建这两种形式。 , 和 form_state没有喜悦。 此外,每个按钮和答案都有唯一的名称/ID。

这是我的小部件代码(包括按钮定义):

<?php
/**
 * @file
 * Contains \Drupal\pp_quiz\Plugin\Field\FieldWidget\QuestionWidget.
 */
namespace Drupal\pp_quiz\Plugin\Field\FieldWidget;

use Drupal\pp_quiz\Controller\QuizController;
use Drupal\pp_quiz\Ajax\AjaxHandler;
use Drupal\Core\Field\WidgetBase;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\Core\Form\FormStateInterface;

/**
 * Plugin implementation of the 'question_widget' widget
 *
 * @FieldWidget(
 *   id = "question_widget",
 *   label = @Translation("Quiz question widget"),
 *   field_types = {
 *     "quizquestion_type",
 *   },
 * )
 */
 class QuestionWidget extends WidgetBase
 {
     public function formElement(FieldItemListInterface $items, $delta, array $element, array &$form, FormStateInterface $form_state) {
         $ajaxhandler = new AjaxHandler();

         $input = $form_state->getUserInput();

         //grab answer count from element array (using delta index)
         $question = $items->get($delta)->getValue();
         $answercount = count(unserialize($question['answer']));

         $element['question'] = array(
             '#type'=>'text_format',
             '#format' => 'normal',
             '#title' => gettext('Question'), 
             '#description' => gettext("The Question Text"), 
             '#required' => TRUE,
             '#element_validate' => array(
                 array(
                     '\Drupal\pp_quiz\Controller\QuizController', 
                     'validateQuestion'
                 ),
             ),
         );
         $element['answers_description'] = array('#markup' => 'Create answers below and select which are correct by checking boxes');
         $tableheader = array(
             'answer' => array('data' => t('Answer'), 'field' => 'answer'),
         );

         for ($i=0; $i<$answercount; $i++) {
             $name = "{$delta}answer{$i}";

             $options[$name] = array(
                 'answer' => array(
                     'data' => array(
                         '#type'=>'textfield',
                         //fix for losing answers on addmore button
                         '#value'=>isset($input[$name]) ? $input[$name] : '',
                         '#name' => $name,
                         '#required' => TRUE,
                     ),
                 ),
             );
         }

         $element['answers'] = array(
             '#type'=>'tableselect',
             '#header' => $tableheader,
             '#options' => $options,
         );

         $element['removeanswer'] = array(
             '#type' => 'submit', 
             '#value' => t('Remove Answer'), 
             '#name' => "{$delta}removeanswer",
             '#questionno' => $delta,
             '#attributes' => array(
                 'class' => array('removeanswer')
             ),
             '#ajax' => array(
                 'callback' => array(
                     $ajaxhandler,
                     'removeAnswerAjax',
                 ),
                 'wrapper' => 'edit-field-quiz-questions-wrapper',
             ),

         );

         $element = array(
             '#type' => 'question',
         ) + $element;

         return $element;
     }
 }

正如您在上面所看到的,我的“removeanswer”提交按钮元素有一个 ajax 回调函数,它指向“AjaxHandler”类中名为“removeAnswerAjax”的函数。以下是此回调的代码:

<?php

/**
 * @file
 * Contains \Drupal\pp_quiz\Ajax\AjaxHandler.
 */

namespace Drupal\pp_quiz\Ajax;

use \Drupal\pp_quiz\Controller\QuizController;
use \Drupal\pp_quiz\Entities\QuizResults;
use \Drupal\Core\Form\FormStateInterface;
use \Drupal\Core\Ajax\AjaxResponse;
use \Drupal\Core\Ajax\HtmlCommand;

class AjaxHandler {

    public function removeAnswerAjax(&$form, FormStateInterface $form_state) {
        $questionno = $form_state->getTriggeringElement()['#questionno'];

        $response = new AjaxResponse();

        //find selected answer for question number (questionno)
        foreach($form['field_quiz_questions']['widget'][$questionno]['answers']['#value'] as $answer_key=>$answer) {
            unset($form['field_quiz_questions']['widget'][$questionno]['answers']['#options'][$answer]);
            unset($form['field_quiz_questions']['widget'][$questionno]['answers']['#default_value'][$answer]);
            unset($form['field_quiz_questions']['widget'][$questionno]['answers'][$answer]);
        }

        $response->addCommand(new HtmlCommand('#edit-field-quiz-questions-wrapper', $form['field_quiz_questions']['widget']));

        $form_state->setRebuild();

        return $response;
    }
}

如果有人能阐明为什么在将表单作为参数传递给我的 ajax 回调之前重置表单,我会永远爱你:-)

感谢阅读。

最佳答案

您的 Ajax 第二次没有生效的一个可能原因是在 Ajax 回调中重建表单。当您使用 -

重建表单时
$form_state->setRebuild()

重建表单时,所有字段和表单 ID 都以随机生成号作为后缀。因此未找到选择器并且响应未在 DOM 中替换。

尝试删除表单重建。

关于php - Drupal 8 Ajax 忘记表单更改,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34633203/

相关文章:

php - 带下一个/上一个按钮的下拉菜单 php

php - 运行 Laravel 4 迁移时出现 SQL 1005 错误

javascript - 如果使用 fetch 调用,Laravel 5.6 Auth::check() 返回 false

Drupal View 公开过滤器: Taxonomy Select List?

php - 寻找支持 unixODBC 和 FreeTDS 的托管公司

javascript - 如何在 HTML 中显示来自 Ajax 的数组数据(在 Laravel 4.1 中)

jquery - 设置请求 header 时,在预检响应错误中,Access-Control-Allow-Headers 不允许请求 header 字段授权

javascript - 执行通过ajax加载的内联js

php - 无法使用 drupal 模块创建 block

Drupal 在 block 和页面中显示暴露的过滤器