0

我对我的 jquery 函数的成功有疑问。

这是js中的脚本

$.ajax({
    type: "POST",
    url: "filtra.php",
    dataType: 'json', 
    data: "livello:"+ liv+"&materia:"+mat,
    success: function (data) {
        for ( var x = 0; x < data.length; x++ ) {
            content = data[x].ID;
    alert(content);
    }
    }
});

这是php页面。

<?php
    if (isset($_POST['livello']) && isset($_POST['materia']) && isset($_POST['keyword'])) {
        $liv=$_POST['livello'];
        $mat=$_POST['materia'];
        $keyw=$_POST['keyword'];
        $dsn = "mysql:host=localhost;dbname=db";
        $username = "root";
        $password = "";
        $rows=array();
        try{
            $pdo = new PDO($dsn, $username,'');}
        catch(PDOException $e) {
            echo 'Attenzione: '.$e->getMessage();}
        $str="SELECT * FROM quesito";
        if($liv!="Tutte"){$str.=" WHERE '$liv'=Livello ";}
        if($mat!="Tutte" && $liv!="Tutte"){$str.="AND '$mat'=Materia ";}
        else if($mat!="Tutte" && $liv=="Tutte") {$str.=" WHERE'$mat'=Materia ";}
        $sql = $pdo->prepare($str);
        $sql->execute(); 
        $res = $sql->fetchAll();    
        echo json_encode($res);
        }
?>

没有任何回报..感谢您的回复。

4

1 回答 1

2

你错过了echo

echo json_encode($res);

编辑:和拼写错误encode

于 2012-10-17T17:53:59.377 回答