プラグインクラスファイル:

function __construct() { add_shortcode("user_registration_form", array($this, "shortcode")); } public function hook(){ add_action( "wp_ajax_get_product_serial_callback", "get_product_serial_callback" ); add_action( "wp_ajax_nopriv_get_product_serial_callback", "get_product_serial_callback" ); } public function product_serial_ajax() { ?> <script type="text/javascript"> jQuery(document).ready(function(){ alert("Hello World!"); jQuery.ajax({ type: "GET", url: "<?php echo admin_url("admin-ajax.php"); ?>", //url: ajaxurl, dataType : "JSON", data : {action: "get_product_serial_callback"}, //cache: false, success: function(data){ alert("Eureka")"; } }); }); </script><?php } function csv_to_array($filename="", $delimiter=",") { //if(!file_exists($filename) || !is_readable($filename)) //return FALSE; $header = NULL; $data = array(); if (($handle = fopen($filename, "r")) !== FALSE) { while (($row = fgetcsv($handle, 1024, $delimiter)) !== FALSE) { if(!$header) $header = $row; else $data[] = array_combine($header, $row); } fclose($handle); } return $data; } function get_product_serial_callback(){ $upload_dir = wp_upload_dir(); $csvFile = $upload_dir["baseurl"]."/Eragon-Serial.csv"; $csv = $this->csv_to_array($csvFile); //read csv foreach ($csv as $serialnum){ $serial_num_array[] = $serialnum["product_serial"]; } $json_array = json_encode($serial_num_array); echo $json_array; die(); } function shortcode() { $this->product_serial_ajax();//fetch product serial number } 

ただし、検出されたajaxurlが定義されていない場合は、以下のURLで形成されます

http://example.com/wp-admin/admin-ajax.php?action=get_product_serial_callback 

これも役に立ちませんでした。

get_product_serial_callback関数を呼び出してJSON値を取得し、それらの値を

コメント

  • フックメソッドは呼び出されますか?また、コールバックは、回答に記載されているようにarray($this, 'get_product_serial_callback')である必要があります。
  • 呼び出されているかどうかを確認するにはどうすればよいですか?あなたが言ったようにコールバックを変更しました。それでも、ajaxurl is not defined
  • initでフック関数を呼び出しましたか?そうでない場合は、initアクションでその関数を呼び出してください

回答

_construct()関数に以下のコードを入力してアクション名をget_product_serial_callbackに変更します:-

add_action( "wp_ajax_get_product_serial_callback", array($this,"get_product_serial_callback") ); add_action( "wp_ajax_nopriv_get_product_serial_callback", array($this,"get_product_serial_callback" )); 

コメント

  • 質問が更新されました。それでも関数を呼び出さず、応答で0を返します
  • 関数get_product_serial_callback()にpublicを追加します。
  • 例:public function get_product_serial_callback()
  • WisdmLabs :関数product_serial_ajaxに対するjsonデータ応答を取得するにはどうすればよいですか?応答として表示されるajaxurlはhttp://example.com/wp-admin/admin-ajax.php?action=get_product_serial
  • アクション名を' wp_ajax_get_product_serial 'そして上記のように定義された関数を呼び出します。

回答

プラグインクラスファイル:

function __construct() { add_shortcode("user_registration_form", array($this, "shortcode")); wp_register_script("product-serial", plugins_url("bootstrap/js/product-serial.js", __FILE__),array("jquery")); //custom jquery for product serial wp_enqueue_script( "product-serial" ); //custom jquery for product serial $this->hook(); } public function hook() { add_action("wp_ajax_get_product_serial", array( $this,"get_product_serial")); add_action("wp_ajax_nopriv_get_product_serial",array( $this,"get_product_serial") ); } public function product_serial_ajax(){ ?> <script type="text/javascript">load_product();</script> <?php } //convert csv data into array function csv_to_array($filename="", $delimiter=",") { //if(!file_exists($filename) || !is_readable($filename)) //return FALSE; $header = NULL; $data = array(); if (($handle = fopen($filename, "r")) !== FALSE) { while (($row = fgetcsv($handle, 1024, $delimiter)) !== FALSE) { if(!$header) $header = $row; else $data[] = array_combine($header, $row); } fclose($handle); } return $data; } //get product serial number function get_product_serial(){ $upload_dir = wp_upload_dir(); $csvFile = $upload_dir["baseurl"]."/Eragon-Serial.csv"; $csv = $this->csv_to_array($csvFile); //read csv foreach ($csv as $serialnum){ $serial_num_array[] = $serialnum["product_serial"]; } $json_array = json_encode($serial_num_array); echo $json_array; die(); } function shortcode() { $this->product_serial_ajax(); //fetch product serial number } 

個別のJSファイル

 function load_product(){ jQuery.ajax({ type: "GET", url: ajaxurl, dataType : "JSON", data : {action: "get_product_serial"}, //cache: false, success: function(data){ alert("Eureka"); } }); } 

PS:私のテーマのheader.phpに以下を入れるとうまくいきました

<script type="text/javascript"> var ajaxurl = "<?php echo admin_url("admin-ajax.php"); ?>"; </script> 

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です