处理来自AJAX请求的数据

时间:2010-06-11 21:34:43

标签: php javascript ajax json

我有一个我正在使用的PHP API,它将所有内容输出为JSON。

我需要调用其中一个API方法并使用AJAX请求解析它。我正在使用jQuery(虽然它应该没关系)。

当我发出请求时,当我发出请求时,它会出现“parsererror”作为textStatus和“语法错误:无效标签”。

简化代码:

$.ajax
({
    type: "POST",
    url: "http://mydomain.com/api/get/userlist/"+mid,
    dataType: "json",
    dataFilter: function(data, type)
    {
        /* Here we assume and pray */
        users = eval(data);
        alert(users[1].id);
    },
    success: function(data, textStatus, XMLHttpRequest)
    {
        alert(data.length); // Should be an array, yet is undefined.
    },
    error: function(XMLHttpRequest, textStatus, errorThrown)
    {
        alert(textStatus);
        alert(errorThrown);
    },
    complete: function(XMLHttpRequest, textStatus)
    {
        alert("Done");
    }
});

如果我放弃eval(data),那么一切正常。好吧,data中的success仍未定义。请注意,我在PHP中使用了一组对象,然后通过json_encode将它们传递出去。这有什么不同吗?

在这方面没有取得任何进展。如果有人认为他们可以提供帮助,我愿意提出更多代码。

这是PHP方面的事情

private function _get_user_colors($id)
{
    $u = new User();
    $u->get_where(array('id' => $id));

    $bar = array();

    $bar['user'] = $u->stored;

    foreach($user->colors as $color)
    {
        $bar['colors'][] = $color;
    }

    echo(json_encode($bar));
}

我使用其他基于PHP的脚本时遇到问题。我不知道为什么Javascript会对它产生问题。

2 个答案:

答案 0 :(得分:1)

Parsererror通常表示来自服务器的响应格式不正确。如果你直接在浏览器中加载它看起来不错吗?

答案 1 :(得分:1)

尝试在错误处理程序中输出alert(request.responseText)(并将第一个参数重命名为request)。这应该可以解决脚本的错误输出。