Jquery 手机 json 来自 php

Jquery mobile json from php

正在以 json

从 php 获取数据

代码:

I have added json_encode() to the php database output

JQUERY 手机:

$.getJSON('custom/php/showresults.php',
 function(data){
console.log(data)
}

console.log(数据) 输出为:

{'name':'Geowan', 'surname':'hiu'}.

如何将其更改为以对象方式输出,以便我可以使用访问数据 data.name

你想直接访问数据吗?

$.getJSON('custom/php/showresults.php',
 function(data){
 console.log(data.name)
}

如果你想让它赋值给一个变量

var jsonData = $.getJSON('custom/php/showresults.php',
 function(data){
 return data;
}
if(jsonData){
console.log(jsonData.whatever)
}

或者干脆

$.getJSON('custom/php/showresults.php',function(data){
    return data.whatever;
}