Chamar a função JS customizada no retorno de chamada AJAX?

8

É possível invocar uma função JS customizada em um retorno de chamada AJAX?

function MY_MODULE_ajax_callback() {
  // Define a new array to hold our AJAX commands.
  $ajax_commands = array();

  // Create a new AJAX command that replaces the #page text with our own text.
  $ajax_commands[] = [CUSTOM JS FUNCTION]

  // Return our commandS
  return array('#type' => 'ajax','#commands' => $commands);
}
Alex Gill
fonte
Sim, ele é. Ou pelo menos deveria ser possível. Algum problema em particular?
Mołot 17/07/2013
esta parece ser uma duplicata de drupal.stackexchange.com/questions/18867/...
ErichBSchulz

Respostas:

5

Você não pode executar um script arbitrário, mas se puder agrupar sua funcionalidade JS em um plug-in jQuery, poderá usá ajax_command_invoke-lo para obter o mesmo efeito, por exemplo

$selector = 'body';
$method = 'myJqueryPlugin';
$args = array('arg1', 'arg2');

$ajax_commands[] = ajax_command_invoke($selector, $method, $args);

Quando isso sai no front end, ele executa algo equivalente a

$('body').myJqueryPlugin('arg1', 'arg2');
Clive
fonte
10

Sim, ele é.

Exemplo de código:

$commands = array();
$commands[] = array(
    'command' => 'your_js_callback', // the name of your javascript callback
    'value1'  => 'My first value',
    'value2'  => 'My second value',
);

Código JS:

(function($, Drupal) {
    Drupal.ajax.prototype.commands.your_js_callback = function(ajax, response, status) {
        alert(response.value1);
        alert(response.value2);
    }
})(jQuery, Drupal);
Muhammad Reda
fonte
3
este é um bom exemplo também
Rotari Radu