新增回傳錯誤檔案

This commit is contained in:
koko 2025-05-07 16:01:57 +08:00
parent 7c5ced0604
commit 27a22bca16
2 changed files with 77 additions and 0 deletions

42
js/bajaux.Widget.js Normal file
View File

@ -0,0 +1,42 @@
/**
* This is a FAKE bajaux.Widget.js file.
* It mimics the define signature but returns a simple mock object.
*/
// 這裡列出真實文件中的依賴,但 provide function 仍然返回一個簡單物件
define([
'lex', // 注意:這裡可能需要 lex 的 plugin ! 如果錯誤棧有 lex!,可能需要一個假的 lex plugin
'jquery',
'Promise',
'bajaux/events',
'bajaux/Properties',
'bajaux/commands/CommandGroup',
'bajaux/commands/Command',
'bajaux/Validators',
'tinyevents', // 根據真實代碼的依賴
'log!bajaux.Widget' // 這個依賴由我們改進的假 log plugin 處理
], function(lex, $, Promise, events, Properties, CommandGroup, Command, Validators, tinyevents, log) { // 這裡的參數需要與 define 依賴對應
// console.warn("--- Successfully loaded FAKE bajaux/Widget module ---");
// 驗證 log 是否是我們提供的假 logger
if (log && typeof log.warning === 'function') {
// console.log("--- FAKE bajaux/Widget received a valid-looking 'log' dependency ---");
// 這裡可以執行一下真實代碼中導致錯誤的那一行,看看是否還出錯
try {
var logWarning = log.warning.bind(log);
// console.log("--- FAKE bajaux/Widget successfully called log.warning.bind ---");
} catch (e) {
// console.error("--- FAKE bajaux/Widget failed to call log.warning.bind:", e, "---");
}
} else {
// console.error("--- FAKE bajaux/Widget received an invalid 'log' dependency:", log, "---");
}
// 返回一個最小的假物件,表示模組載入成功
// 你可以根據後續錯誤再添加假方法
return {
getDisplayName: function() { return "Fake Widget Instance"; },
getSlotPath: function() { return "fake/slot/path/instance"; }
// etc.
};
});

35
js/log.js Normal file
View File

@ -0,0 +1,35 @@
/**
* This is an IMPROVED FAKE log.js RequireJS plugin file.
* It attempts to return a mock logger object, as the real plugin likely does.
*/
define({
load: function (name, req, onload, config) {
// console.log("--- Using IMPROVED FAKE log plugin, processing module:", name, "---");
// A real logger plugin typically returns a logger instance FOR the 'name' module.
// It does NOT usually return the module content itself.
// Let's create a fake logger object that mimics the expected methods.
const fakeLogger = {
log: function(...args) { console.log(`[FAKE LOG][${name}]`, ...args); },
info: function(...args) { console.info(`[FAKE INFO][${name}]`, ...args); },
warn: function(...args) { console.warn(`[FAKE WARN][${name}]`, ...args); },
warning: function(...args) { console.warn(`[FAKE WARNING][${name}]`, ...args); }, // 根據錯誤,這個方法是需要的
error: function(...args) { console.error(`[FAKE ERROR][${name}]`, ...args); },
// 添加其他方法,如果後續遇到 "Cannot read properties of undefined (reading 'someMethod')" 錯誤
isLoggable: function() { return true; }, // 示例
// etc.
};
// console.log(`--- IMPROVED FAKE log plugin returning mock logger for "${name}". Mock logger:`, fakeLogger, "---");
// 直接通過 onload 傳回這個假 logger 物件,而不是去 req([name])
onload(fakeLogger);
// 不需要在這裡呼叫 req([name]),除非 log plugin 的功能是更複雜的包裝器
// 通常 logger plugin 只需要一個模組名稱,然後返回一個 logger
},
// 如果 log plugin 需要處理優化器,可能還需要 normalize 方法
// normalize: function(name, normalize) {
// return normalize(name);
// }
});