呈现时不显示JSON结果

时间:2013-12-12 09:25:44

标签: jquery ajax json object

我有一个JSON具有以下结构:

{
"last_reached":false,
"error":false,
"gal_providers":
    [
        {
            "GalProvider":
                {
                    "id":"121",
                    "uid":"gp_522f1e0472eba",
                    "user_id":"45230",
                },
                "GalCategory":
                {
                    "id":"3",
                    "name":"Photographer",
                    "status":"1",
                    "added_on":"1355211746"
                }
--------------
--------------------

我尝试渲染上面的JSON输出如下:

jQuery.each(resp.gal_providers, function(index, gal_provider) {
        alert(gal_provider.GalCategory.added_on);
});

但上述alert没有显示任何内容。有趣的是,我在本地检查时得到了正确的结果!!问题是什么?

编辑1:

获取此错误

TypeError: Cannot read property 'added_on' of undefined

完整网站链接:Website

0 个答案:

没有答案