0

我在我的 ajax 请求中传递了一个 json,但它每次只返回 10,为什么?

为什么我的阵列没有通过?

这是我的代码:

jQuery(document).ready(function($){
    $('#list-3 .ajaxcall').click(function(){
        $.ajax({
            type : "GET",
            url : ajaxurl,
            dataType: 'json',
            contentType: "application/json; charset=utf-8",
            data : { 
                    gpl_args : JSON.stringify({"cat":"26","posts_per_page":"4","paged":1}),
                    gpl_layout : {"show_thumb":"1","columns":"4","thumb_height":"85","thumb_width":"85","title_link":"1","content_excerpt":"50","posts_per_page":"4"}
            },
            success : function(response) {
                // The server has finished executing PHP and has returned something,
                // so display it!
                $("#list-3").append(response);
            }
        });
    });
}); 

和:

$args       = isset($_REQUEST['gpl_args']);
//$args         = json_encode(isset($_REQUEST['gpl_args']));
print_r($args)

更新:

my data inside ajax:
   data    : { gpl_args : JSON.stringify(<?php echo json_encode($args); ?>),
              JSON.stringify(gpl_layout   : <?php echo json_encode($layout); ?>)},
4

3 回答 3

1

简单的修复。您必须对 json 进行 DE 编码,而不是对其进行 EN 编码。

$args = isset($_REQUEST['gpl_args']) ? $_REQUEST['gpl_args'] : null;
$args = json_decode(stripslashes($args));
print_r($args)
于 2013-05-15T00:56:27.560 回答
0

查看您的 php 脚本:

$args       = isset($_REQUEST['gpl_args']);
//$args     = json_encode(isset($_REQUEST['gpl_args'])); 
// $args is false(Boolean type), But not json
print_r($args);  // print_r(false);  is show nothing!!

正确的路:

$json_array[] = isset($_REQUEST['gpl_args']) ? $_REQUEST['gpl_args'] : false;
echo json_encode($json_array);  // will show json string
于 2013-05-15T01:25:39.830 回答
-1

你不是打印 isset() 的布尔结果而不是实际的参数吗?

于 2013-05-15T00:34:14.317 回答