Drupal → Создать свою ajax команду (8)

14.02.2020

Пример создания ajax команды для вывода сообщений в консоль браузера.

// src/Ajax/ConsoleLogCommand.php

namespace Drupal\modulename\Ajax;

use Drupal\Core\Ajax\CommandInterface;

class ConsoleLogCommand implements CommandInterface {

  protected $message;

  /**
   * Command constructor.
   */
  public function __construct($message) {
    $this->message = $message;
  }

  /**
   * {@inheritDoc}
   */
  public function render() {
    return [
      'command' => 'consoleLog',
      'message' => $this->message,
    ];
  }

}
// modulename.ajax.js

(function ($, Drupal) {

  /**
   * Command "consoleLog".
   */
  Drupal.AjaxCommands.prototype.consoleLog = function (ajax, response, status) {
    console.log(response.message);
  };

})(jQuery, Drupal);

Использование:

$response = new AjaxResponse();
$response->addCommand(new ConsoleLogCommand('Hello World!'));
return $response;

Способ для Drupal 7

Написанное актуально для
Drupal 8
Похожие записи

Комментарии

Василий
13.02.2022, 22:46

Не забываем подключать js файл

Добавить комментарий