1

问题

我正在尝试记录从 JSON 调用返回的数据,console.log(jsonData)但似乎无法正常工作。

代码

$(document).ready(function() {
    $("#users li a:first-child").click(function() {

        var id = this.href.replace(/.*=/, "");
        this.id = "delete_link_" + id;

        if(confirm("Are you sure you want to delete this user?"))
        {
            $.getJSON("delete.php?ajax=true&id=" + id, function(data) {
                console.log(data.success);
            });
        }

        return false;
    });
});

返回者delete.php

{"id": $id, "success": 1}成功后。
{"id": $id, "success": 0, "error": "Could not delete user."}失败时。

4

1 回答 1

3

您的 JSON 无效:

{'id' : 2, 'success' : 1}

它应该有双引号:

{"id" : 2, "success" : 1}

基于此,我认为您正在手动构建 JSON 字符串,我建议您json_encode()改用:

$result = new stdClass;
$result->id = 2;
$result->success = 1;

echo json_encode($result);

输出

{"id":2,"success":1}
于 2013-01-03T15:22:48.600 回答