小编典典

原型回调函数吞没异常

ajax

使用原型版本1.6.0.2。

我有一个常见的问题,就是在将异常抛出到回调函数中时(通常是在尝试处理对Ajax.Request调用的响应时)会吞下这些异常。这是一个简单的示例:

HTML标记:

<input type="button" id="myButton" value="Press Me" />

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

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

提前致谢!


阅读 271

收藏
2020-07-26

共1个答案

小编典典

截至今天,这是已知的行为:

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

这里有一个增强功能,可以处理这些吞咽的异常:

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(); 
        } 
});

希望在解决永久问题之前能够帮助其他遇到相同问题的人。

2020-07-26