我有一个从 $.ajax() 方法调用的 ASP.NET MVC Web API。我的 API 返回了正确的 JSON,但无法访问该对象。尝试记录“名称”的值时在我的控制台中收到的错误是:
未捕获的类型错误:无法读取未定义的属性“名称”
JSON:
[{"id":2,"Name":"thom","Picture":"thom.jpg","About":"I'm a guy. This is my profile. Now quit staring and get out of here.","Location":"London"}]
jQuery:
$.ajax({
cache:false,
type: 'GET',
dataType: 'json',
url: 'http://localhost:3235/Users/searchUsers?callback=?&searchString=' + searchString,
complete: function (data) {
console.log(data[0].Name);
}
});
任何帮助,将不胜感激。谢谢!