我在这里晾干了。用户单击select列表上的一个选项,然后jquery发送一个xhr到服务器进行处理,这里没有什么特别的,代码工作得很好(firebug显示了正确的发布数据)。
然后使用一个简单的代码从W_id == $val的数据库返回行,然后在$result中获取结果,然后将结果作为json响应进行回显:

public function getCities($val) {
    $sth = $this->db->prepare("SELECT id, name FROM cities WHERE w_id = :w_id");
    $sth->execute(array(':w_id' => $val));
    $result = $sth->fetchAll(PDO::FETCH_ASSOC);
    //print_r($result);
    header("content-type:application/json");
    echo json_encode($result);
}

firebug显示post数据,但没有响应。但当我取消注释print_r时,它会显示一个数组作为响应:
Array(
    [0] => Array(
        [id] => 1401
        [name] => Aïn Bouchekif
    )

    [1] => Array(
        [id] => 1402
        [name] => Aïn Deheb
    )

    [2] => Array(
        [id] => 1403
        [name] => Aïn El Hadid
    ) and so on...

这意味着有些结果可以返回,但我不知道如何对它们进行jsonify。感谢您的帮助。

最佳答案

我认为这是一个编码问题,您可以使用json_last_error()来验证这个想法。您可以将charset=utf-8添加到标题:

$result = $sth->fetchAll(PDO::FETCH_ASSOC);
//print_r($result);
header("Content-type: application/json; charset=utf-8"); // <-- Here
echo json_encode($result);
echo json_last_error(); // <-- Here

关于php - json_encode无法在PDO上获取数据,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28461473/

10-09 16:08
查看更多