在JSHint運行這段代碼時,我得到幾個「未定義」錯誤「未定義」警告:JSHint扔在揭示模塊模式
MERLIN.namespace('MERLIN.http');
MERLIN.http = function ($, window) {
'use strict';
// import dependencies
function request(config) {
if (!config || typeof config !== 'object') {
return;
}
// perform request
$.ajax({
type: config.type || 'GET',
url: config.url,
dataType: config.dataType,
data: config.data || {},
processData: config.process || false,
beforeSend: function() {
indicator(config.panel, config.indicator);
},
complete: function() {
indicator(config.panel, config.indicator);
},
success: function (resp) {
var callback = config.success || null;
if (typeof callback !== 'function') {
callback = false;
}
if (callback) {
callback.apply(this, [resp]);
}
},
error: function (xhr, textStatus, errorThrown) {
httpError({
xhr: xhr,
status: textStatus,
error: errorThrown,
panel: config.panel
});
}
});
};
function indicator(panel, type) {
if ((!panel || typeof panel !== 'string') || (!type || typeof type !== 'string')) {
return;
}
var indicatorType = (type === 'large') ? type = 'indicatorLarge' : type = 'indicatorSmall';
return $(panel).toggleClass(indicatorType);
};
function httpError() {
return this;
};
return {
request: request,
error: httpError
};
} (jQuery, this);
我不知道爲什麼被拋出「指標」未定義的錯誤和'httpError'以及爲什麼使用'return this'是一個潛在的嚴格違規行爲。我知道我可以放心地忽略與名稱空間有關的未定義錯誤,因爲通用名稱空間函數在前面的單獨文件中定義。
它只是一個實用主義與嚴格驗證的情況嗎?
謝謝:)
請報出實際的錯誤。 – 2012-01-18 09:37:52