Простой вызов Ajax с обработчиком результатов не работает - PullRequest
0 голосов
/ 05 ноября 2018

Я получил это JS:

<script>
jQuery(document).ready(function(){ // we wait until DOM is ready
    jQuery('#veranstort').change(function(){ // fire when input is filled

        origin = "55767 Schwollen";
        destination = "13509 Berlin";

        jQuery.ajax({ // we build the AJAX request
                method:"POST", 
                url:"index.php?option=com_rsform&formId=6&action=ajax", 
                data: {origin, destination},
                success: function(results) {
                    console.log("results: " + results);

                }
        });
    });
})
</script>

который запускает этот скрипт php:

$action = JRequest::getWord('action'); // we will need a parameter to run the script
if ($action == "ajax") { // if condition is met, run the script

    $origin = $_POST['origin']; // get the origin
    $destination = $_POST['destination']; // get the destination
    var_dump("destination: ".$destination); // this gives me NULL!!

    $distance = file_get_contents("https://maps.googleapis.com/maps/api/distancematrix/json?origins=".$origin."&destinations=".$destination."&key=GMAPSKEY"); // build the URL according to the API

    $distance = json_decode($distance); // decode the response from JSON

    print_r($distance->rows[0]->elements[0]->distance->text);die(); // print the result so we can catch it in the AJAX call

}

Это работало некоторое время, но теперь это не так. Я не могу получить доступ к месту назначения или значению источника в php. Что я делаю не так?

Ответы [ 2 ]

0 голосов
/ 05 ноября 2018

Ошибка произошла из-за отсутствия / в URL. Это было перенаправлено, и данные POST были потеряны с этим процессом.

правильный URL:

url:"/index.php?option=com_rsform&formId=6&action=ajax"
0 голосов
/ 05 ноября 2018

Скриптовый файл это нормально. Пожалуйста, измените условие файла ajax.

$action = $_GET['action'];

if ($action == "ajax") { // if condition is met, run the script


     //// Here process your code
}
...