我正在编写一个 Javascript SDK 来与 Web 服务交互。我正在使用 jQuery 进行 AJAX 调用。
当 AJAX 调用失败时,我为在我的 .js 文件顶部调用的 ajaxError 注册了一个事件处理程序。我的问题,我不明白为什么,当它被调用时,我无法访问我的 Akamanda.Client 的类成员变量。
我尝试为 Akamanda.Client 添加另一个方法作为 .prototype.logError,它被 jQuery Ajax 处理程序调用,但即便如此,对 (this.logging) 的测试也失败了。
如何从 jQuery 回调中访问类成员变量?我在这里不明白什么?ajaxError 回调未定义 Akamanda.Client.logging。
我的 SDK 代码:
$(document).ajaxError(function(event, jqxhr, settings, exception) {
// more robust error handling for different conditions
if (Akamanda.Client.logging) {
console.log('FAILED: ' + settings.type + ' ' + settings.url + ' => ' + exception);
}
});
Akamanda.Client = function(options) {
this.URL = options.URL || 'http://m-test.akamanda.com';
this.baseURL = this.URL + '/api/' + Akamanda.API_VERSION;
this.feedsURI = '/websyndication/feed/';
// who is the client? (iphone/android/web)
this.clientName = options.clientName;
// For development: Logging and buildcurl IS ON, for production: OFF
//this.logging = options.logging || true;
this.logging = true;
// called when a user is not authorised (Disabled)
// this.logoutCallback = options.logoutCallback || null;
}
Akamanda.Client.prototype.getFeeds = function(callback){
var feeds = [];
$.getJSON(this.baseURL + this.feedsURI, function(data) {
$.each(data, function(index, feed) {
feeds[index] = {
name: feed.name,
title: feed.title,
link: feed.link
};
})
callback(feeds);
});//.error(function(err) { (disabled at the moment in favour of ajaxError event)
// console.log('Error: ' + err.error);
// });
}
我的客户端代码(在另一个 JS 源文件中):
var options = { logging: true };
myAPI = new Akamanda.Client(options);
var feeds = [];
var articles = [];
function getFeeds()
{
myAPI.getFeeds(function(AkamandaFeeds) {
feeds = AkamandaFeeds;
showFeeds();
});
}