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);
}

Sim, ele é. Ou pelo menos deveria ser possível. Algum problema em particular?
Mołot 17/07/2013

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');

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);

3
este é um bom exemplo também
Rotari Radu
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.