JSON 解码 php 问题


JSON decode php problems

我有索引.php并且解码json数组时遇到问题..请帮助我是新手..

<script>
$(document).ready(function () {
    $("#slider_price").slider({
        range: true,
        min: 0,
        max: 100,
        step: 1,
        values: [0, 100],
        slide: function (event, ui) {
            $("#app_min_price").text(ui.values[0] + "$");
            $("#app_max_price").text(ui.values[1] + "$");
        },
        stop: function (event, ui) {
            var nr_total = getresults(ui.values[0], ui.values[1]);
            $("#results").text(nr_total);
        },
    });
    $("#app_min_price").text($("#slider_price").slider("values", 0) + "$");
    $("#app_max_price").text($("#slider_price").slider("values", 1) + "$");
});
function getresults(min_price, max_price) {
    var number_of_estates = 0;
    $.ajax({
        type: "POST",
        url: 'search_ajax.php',
        dataType: 'json',
        data: {
            'minprice': min_price,
            'maxprice': max_price
        },
        async: false,
        success: function (data) {
            number_of_estates = data;
        }
    });
    return number_of_estates;
}

和search_ajax.php

<?php
 require_once('includes/commonFunctions.php');
// take the estates from the table named "Estates"
if(isset($_POST['minprice']) && isset($_POST['maxprice']))
{
 $minprice  = filter_var($_POST['minprice'] , FILTER_VALIDATE_INT);  
 $maxprice  = filter_var($_POST['maxprice'] , FILTER_VALIDATE_INT); 
 $query = mysql_query("SELECT * FROM cars WHERE min_range >= $minprice AND max_range     <= $maxprice");
$rows = array();
while($r = mysql_fetch_assoc($query)) {
  $rows[] = $r;
}
echo json_encode($rows);
}
?>

问题是我只想以特定的div"number_results"打印$rows..如何解码该JSON数组?

您确定要传递的数据是 JSON 格式吗

我认为应该是

'{"minprice": "min_price", "maxprice":"max_price"}'

你不能只从函数返回 ajax 返回值,因为 ajax 是异步的......该函数在 ajax 调用完成时已经返回 number_of_estates

使用回调或只是调用函数并将返回的文本附加到其中

..
stop: function( event, ui ) {
  getresults(ui.values[0], ui.values[1]);
},
...
function getresults(min_price, max_price)
{ 
   var number_of_estates = 0;
   $.ajax({
     type: "POST",
     url: 'search_ajax.php',
     dataType: 'json',
     data: {'minprice': min_price, 'maxprice':max_price},
     async: false,
     success: function(data)
     {
        number_of_estates = data;
        $("#results").text(number_of_estates);
     }
  });
 }

但是,每次停止功能发生时都会调用 Ajax,因此要小心。