从ajax响应中读取json数组数据

时间:2017-11-22 07:09:00

标签: json ajax

读取json数据值  获得以下结果(json编码)

    [{"client_id":1,"client_first_name":"Pooja"}]null

    how can i read "client_first_name" value. 
        $.ajax({
                    type: "POST",
                    data: {id: clientid},
                    dataType: 'json',
                    url: webURL + "/invoice/clientdetail/",
                    success: function(data)
                    {
                        var res = json_encode(data);

                    }
            });

 how can i read "client_first_name" value 

* data-获取json数组,我如何读取特定值。

2 个答案:

答案 0 :(得分:2)

假设你的" res" jSON看起来像这样:

{"client_first_name":"value"}

您正在以这种方式阅读该值:

res[0]['client_first_name']

请接受:

how to get data to javascript from php using json_encode?

答案 1 :(得分:0)

使用此命令获取客户端名字

res[0]['client_first_name']