這可能很容易,但我需要訪問此JSON對象中的值。我不知道如何。這裏的對象:JSON對象中的訪問值
{
"COLUMNS": ["NAME"],
"DATA": [["YOUNG, MARIA "]]
}
我希望「obj.NAME」能做到這一點,但它說它是未定義的。這裏是我的AJAX調用:
$.ajax({
//this is the php file that processes the data and send mail
url: 'components/Person.cfc',
//GET method is used
type: "POST",
//pass the data
data: {
method: "getGroup",
uid: $('#cardText').val()
},
success: function(response) {
var obj = $.trim(response);
var obj = jQuery.parseJSON(obj);
$('#form_result').html(obj.NAME);
},