根据我的情况,我希望通过在jQuery中提供以下代码来获得响应数据,该响应数据作为responseText。
var account_id = jQuery('input[name=account_id]').val();
console.log('Account Id is :: ' + account_id);
var recordData = $.getJSON("http://localhost/vtigercrm/index.php?module=Inventory&action=GetAccount&record=" + account_id, function(data) {
recordData = data;
});
console.log(recordData);
这是我在浏览器控制台中看到的控制台输出。
在浏览器控制台中,我可以看到responseText上有一个数据。我怎样才能获得该responseText数据。
当我尝试使用
进行访问时recordData.responseText
我的数据未定义。
有人可以帮助我访问responseText吗?
谢谢&的问候,