Wywołać niestandardową funkcję JS w wywołaniu zwrotnym AJAX?

8

Czy można wywołać niestandardową funkcję JS w wywołaniu zwrotnym 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
źródło
Tak to jest. A przynajmniej powinno to być możliwe. Jakieś szczególne problemy?
Mołot
wydaje się, że jest to duplikat drupal.stackexchange.com/questions/18867/...
ErichBSchulz

Odpowiedzi:

5

Nie możesz uruchomić dowolnego skryptu, ale jeśli możesz owinąć swoją funkcjonalność JS we wtyczkę jQuery, możesz użyć ajax_command_invoketego samego efektu, np.

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

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

Kiedy pojawi się w interfejsie, wykona coś równoważnego

$('body').myJqueryPlugin('arg1', 'arg2');
Clive
źródło
10

Tak to jest.

Przykładowy kod:

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

Kod JS:

(function($, Drupal) {
    Drupal.ajax.prototype.commands.your_js_callback = function(ajax, response, status) {
        alert(response.value1);
        alert(response.value2);
    }
})(jQuery, Drupal);
Muhammad Reda
źródło
3
to także dobry przykład
Rotari Radu