AJAXコールバックでカスタムJS関数を呼び出しますか?


8

AJAXコールバックでカスタムJS関数を呼び出すことは可能ですか?

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

はい、そうです。または、少なくともそれは可能であるべきです。特定の問題はありますか?
Mołot

回答:


5

任意のスクリプトを実行することはできませんが、JS機能をjQueryプラグインにラップできる場合ajax_command_invokeは、同じ効果を得るために使用できます。

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

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

それがフロントエンドで出てくると、それは同等の何かを実行します

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

10

はい、そうです。

コードサンプル:

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

JSコード:

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

3
これも良い例です
Rotari Radu 2014年
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.