javascript – 原型回调函数吞噬异常

使用Prototype版本1.6.0.2.

我有一个常见的问题,当异常被抛入回调函数时被吞下,通常当我试图处理对Ajax.Request调用的响应时.这是一个简单的例子:

HTML标记

使用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);
    }
};

还有其他人遇到过这个问题吗?那里有任何解决方法吗?

提前致谢!

最佳答案
截至今天,这是已知的行为:

http://groups.google.com/group/prototype-scriptaculous/browse_thread/thread/e71c7a6bfb656380/7d1c8a23edc07f03?lnk=gst&q=exception+swallowed#

这里有一个增强处理这些吞下的异常的票证:

https://prototype.lighthouseapp.com/projects/8886/tickets/634-no-exception-on-error-in-oncreate-method-of-ajaxrequest

一个解决方法建议添加以下代码(感谢Glenn Maynard!):

Ajax.Responders.register({ 
        onException: function(request,exception) { 
                (function() { throw exception; }).defer(); 
        } 
});

希望在实施更持久的解决方案之前帮助其他人解决同样的问题.

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...