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 に答える