我的函数返回未定义,我不确定如何找到我要查找的数据。
function getCustomerName(){
var account = localStorage.getItem("account");
$.post("http://127.0.0.1/getCustomer.php", {account:account}, function(data) {
alert('Inside getCustomer' + ' ' + data);
} ,"json");
}
而 getCustomer.php 返回
{"nameCustomer":[{"Alarms":"0","Name":"Jane Doe"}]}
任何帮助,将不胜感激。