Невозможно получить объект JSON в ответ на запрос Ajax с wp_ajax
-
-
Что вы видите,когда заходите на http://www.example.com/wp-admin/admin-ajax.php?action=myAjaxFuncWhat do you see when you go to http://www.example.com/wp-admin/admin-ajax.php?action=myAjaxFunc
- 0
- 2014-11-17
- czerspalace
-
Есть ли прогресс по вашему вопросу?Не могли бы вы продолжить?Any progress on your question? Could you please follow up?
- 0
- 2015-04-15
- kaiser
-
о ... это 5 месяцев назад ... Я ответил на свой вопрос,кстати,на следующий день я опубликовал его,используя кусочки ответа BODA82 - я просто не пометил его как правильный ответ;@toscho добавил свое продолжение намного позже вчера,я не могу проверить,хорош ли его ответ сейчас,хотя это имеет смыслoh... this is from 5 months ago... I did answer to my own question by the way the next day I posted it, using bits of BODA82 answer - I just didn't marked it as the correct answer; @toscho added his follow up much later yesterday I can't verify if his answer is also good now, it makes sense though
- 0
- 2015-04-16
- unfulvio
-
3 ответ
- голосов
-
- 2014-11-18
Ответ BODA82 помог,но в конце концов я понял,что мне следовало заменить
responseText
на методresponseJSON
в моем коде JavaScript. В приведенном ниже примере я сохранял результаты ответа Ajax в переменной. Я не знал,что существует особый метод получения ответа в формате JSON. Таким образом,объект/массив с результатамиget_posts()
возвращается правильно,а не в виде строки:posts = $.ajax({ type: 'GET', url: ajaxurl, async: false, dataType: 'json', data: { action : 'getHotelsList' }, done: function(results) { // Uhm, maybe I don't even need this? JSON.parse(results); return results; }, fail: function( jqXHR, textStatus, errorThrown ) { console.log( 'Could not get posts, server response: ' + textStatus + ': ' + errorThrown ); } }).responseJSON; // <-- this instead of .responseText
Примечание для себя,а также общий совет: если вы не можете что-то исправить вечером,это знак,что вам следует лечь спать,почитать книгу и сосчитать звезды. Ответ будет на следующее утро,чем раньше,тем лучше: D
BODA82's answer helped, but eventually I realized that I should have replaced
responseText
withresponseJSON
method in my JavaScript code. In the example below I was storing the Ajax response results in a variable. I didn't know there was a specific method to get the response in JSON. In a such way the object/array withget_posts()
results is returned correctly and not as a string:posts = $.ajax({ type: 'GET', url: ajaxurl, async: false, dataType: 'json', data: { action : 'getHotelsList' }, done: function(results) { // Uhm, maybe I don't even need this? JSON.parse(results); return results; }, fail: function( jqXHR, textStatus, errorThrown ) { console.log( 'Could not get posts, server response: ' + textStatus + ': ' + errorThrown ); } }).responseJSON; // <-- this instead of .responseText
Note to self, but also general advice: if you can't fix something in the evening it's a sign you should go to bed, read a book, and count stars. An answer will be found the next morning, the earlier the better :D
-
- 2014-11-17
Почти готово к вашей функции PHP. Не нужно устанавливать заголовок. (Изменить: также предполагается,что
get_posts()
действительно возвращает результаты.)function myAjaxFunc() { $posts = get_posts( array( 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_type' => 'my-post-type', 'post_status' => array( 'publish', 'draft' ) ) ); $list = array(); foreach ( $posts as $post ) { $list[] = array( 'id' => $post->ID, 'name' => $post->post_title, 'link' => get_permalink( $post->ID ), ); } echo json_encode( $list ); die; } add_action( 'wp_ajax_nopriv_myAjaxFunc', 'myAjaxFunc' ); add_action( 'wp_ajax_myAjaxFunc', 'myAjaxFunc' );
И ваш Javascript:
$.ajax({ url: "<?php bloginfo('url'); ?>/wp-admin/admin-ajax.php", type: "POST", data: "action=myAjaxFunc", success: function(results) { var posts = JSON.parse(results); console.log(results); $.each(posts, function() { $('#someSelect').append( $('<option></option>').text(this.name).val(this.id) ); }); }, error: function() { console.log('Cannot retrieve data.'); } });
Almost there with your PHP function. No need to set the header. (Edit: Also, assuming
get_posts()
is actually returning results.)function myAjaxFunc() { $posts = get_posts( array( 'posts_per_page' => -1, 'orderby' => 'title', 'order' => 'ASC', 'post_type' => 'my-post-type', 'post_status' => array( 'publish', 'draft' ) ) ); $list = array(); foreach ( $posts as $post ) { $list[] = array( 'id' => $post->ID, 'name' => $post->post_title, 'link' => get_permalink( $post->ID ), ); } echo json_encode( $list ); die; } add_action( 'wp_ajax_nopriv_myAjaxFunc', 'myAjaxFunc' ); add_action( 'wp_ajax_myAjaxFunc', 'myAjaxFunc' );
And your Javascript:
$.ajax({ url: "<?php bloginfo('url'); ?>/wp-admin/admin-ajax.php", type: "POST", data: "action=myAjaxFunc", success: function(results) { var posts = JSON.parse(results); console.log(results); $.each(posts, function() { $('#someSelect').append( $('<option></option>').text(this.name).val(this.id) ); }); }, error: function() { console.log('Cannot retrieve data.'); } });
-
Когда вы сохраняете некоторые данные с помощью JSON.stringify (),а затем вам нужно прочитать их вphp.Следующий код работал у меня.json_decode (html_entity_decode (stripslashes ($jsonString)));When you save some data using JSON.stringify() and then need to read that in php. The following code worked for me. json_decode( html_entity_decode( stripslashes ($jsonString ) ) );
- 0
- 2019-12-04
- Vishal Tanna
-
- 2015-04-15
Выход есть.Используйте
complete
вместоsuccess
илиdone
:posts = $.ajax({ type: 'GET', url: ajaxurl, async: false, dataType: 'json', data: { action : 'getHotelsList' }, complete: function(results) {
И попробуйте удалить
async:false
,если проблема не исчезнет.There is a way out. Use
complete
instead ofsuccess
ordone
:posts = $.ajax({ type: 'GET', url: ajaxurl, async: false, dataType: 'json', data: { action : 'getHotelsList' }, complete: function(results) {
And try to remove
async:false
if the problem persists.
У меня проблема с WordPress и Ajax.
Это моя часть JavaScript (я ее немного обрезал):
Мой PHP-код выглядит следующим образом:
Скрипт получает ответ Ajax от admin-ajax. К сожалению,консоль выдает ошибку,когда доходит до инструкции
each
в коде JavaScript ... она говорит:Если я сделаю console.log моих "сообщений" var,я получу строку 'Array'. Независимо от того,как я передаю переменную
$list
в PHP,она всегда будет возвращать строку. Запрос возвращает сообщения в другом месте,поэтому он не пустой. Я пробовал безjson_encode
,с объявлением заголовка и без него,используяwp_send_json()
,помещаяob_clean()
перед отображением массива,помещая массив в массив ... Но он всегда попадает вajax
в виде строкиArray
,иeach
не может проходить через него.Это должно быть очень просто,и я не могу понять,почему это не работает. У меня нет других ошибок или предупреждений JavaScript или PHP,а все остальное работает нормально.