L
L
Leonid Gorshkov2018-05-03 02:08:46
AJAX
Leonid Gorshkov, 2018-05-03 02:08:46

Json, $jquery ajax Where can I find documentation for downs?

I re-read a lot of guides and cheat sheets, and I can’t understand how it works.
Chew on the example of js and php code please! or help me find a very understandable documentation

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
Merzley, 2018-05-03
@Synacs

In fact, everything is not so difficult.
What happens when you enter a URL into the address bar in a browser? Very simplified, then:
In the case of AJAX, the general essence remains the same:
In its simplest form, an AJAX request using jQuery looks like this:

$.ajax({
        url: 'some url' //URL, по которому будет сделан запрос
    }).done(function(dataFromPHP){
        //Сюда мы попадаем, если запрос завершен успешно
        //Все что PHP должен был вывести в браузер при классическом обращении 
        //через адресную строку браузера (текст, HTML, всё что угодно), 
        //будет прочитано JavaScript-ом и помещено в переменную dataFromPHP.
        //Далее мы можем свободно работать с этими данными.
        //К примеру, показать их с помощью alert
        alert(dataFromPhp);
    }).fail(function(){
        //Сюда мы попадаем, если по каким-то причинам запрос прошел не успешно
        alert('Не удалось произвести запрос')
    });

I posted a couple of simple AJAX examples on github: https://github.com/Merzley/ajax-examples . Nothing but PHP is required to run. If something is not clear, please contact

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question