Richiamare la funzione JS personalizzata nel callback AJAX?


8

È possibile richiamare una funzione JS personalizzata in un callback 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);
}

Sì. O almeno dovrebbe essere possibile. Qualche problema particolare?
Mołot,

questo sembra essere un duplicato di drupal.stackexchange.com/questions/18867/…
ErichBSchulz,

Risposte:


5

Non è possibile eseguire uno script arbitrario, ma se è possibile racchiudere la funzionalità JS in un plug-in jQuery è possibile utilizzare ajax_command_invokeper ottenere lo stesso effetto, ad es.

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

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

Quando uscirà nel front-end, eseguirà qualcosa di equivalente a

$('body').myJqueryPlugin('arg1', 'arg2');

10

Sì.

Esempio di codice:

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

Codice JS:

(function($, Drupal) {
    Drupal.ajax.prototype.commands.your_js_callback = function(ajax, response, status) {
        alert(response.value1);
        alert(response.value2);
    }
})(jQuery, Drupal);

3
anche questo è un buon esempio
Rotari Radu,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.