使用Prototype版本1.6.0.2.
我有一个常见的问题,当异常被抛入回调函数时被吞下,通常当我试图处理对Ajax.Request调用的响应时.这是一个简单的例子:
使用Javascript:
MYSITE = {};
document.observe("dom:loaded",function () {
// Set up our helper object
MYSITE.pageHelper = new MYSITE.pageHelper();
});
MYSITE.pageHelper = function() {
console.log("pageHelper called.");
$("myButton").observe("click",this.makeCall.bindAsEventListener(this));
};
MYSITE.pageHelper.prototype.makeCall = function() {
console.log("Make call.");
new Ajax.Request(
"remoteCall.cfm",{
method: 'get',parameters: "",onComplete: this.handleCallback.bindAsEventListener(this)
});
};
MYSITE.pageHelper.prototype.handleCallback = function(resp) {
console.log("Start callback processing...");
var x = missingVar + "text"; // This line generates an exception...
console.log("Finished callback processing.");
};
好的,所以问题是,如果你在Firebug的Firefox中运行这个代码,那么对于有问题的行也不会输出异常 – 它被吞没了.咕嘟咕嘟.
我知道捕获这些的唯一方法(比如说我正在调试)是在try / catch中包装回调函数的内容.例如:
MYSITE.pageHelper.prototype.handleCallback = function(resp) {
try {
console.log("Start callback processing...");
var x = missingVar + "text"; // This line generates an exception...
console.log("Finished callback processing.");
} catch (e) {
console.log(e);
}
};
还有其他人遇到过这个问题吗?那里有任何解决方法吗?
提前致谢!
最佳答案