Ajax "Alma" olduğunu

1 Cevap php

Benim jquery kod post yöntemi kullanmaya çalışıyorum ama nedense Get yöntemi kullanarak. Ben o zaman $ j değiştirildi jquery için "$" fonksiyonu, yeniden adlandırmış Wordpress Çerçeve altında çalışıyorum. Herkes bu basit bir işlev ile bana yardımcı olabilir misiniz?

  $j.ajax({
method: "POST",
url: "extension/marker.php",
data: "series=test",
dataType: "text",
success: function(data){ 
 $j("#text").text(data);
 console.log('success' + data);
 }
});

PHP Dosya:

  <?php 

  if($_POST['series'] == "test")
   echo 'yay!';

  if($_GET['series'] == "test")
   echo 'boo!';

  ?>

1 Cevap

method: "POST" olmalıdır type: "POST". Bkz the docs.

type
Default: 'GET'
The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.