读取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数组,我如何读取特定值。
答案 0 :(得分:2)
假设你的" res" jSON看起来像这样:
{"client_first_name":"value"}
您正在以这种方式阅读该值:
res[0]['client_first_name']
请接受:
答案 1 :(得分:0)
使用此命令获取客户端名字
res[0]['client_first_name']