3

我有一个 CF 应用程序,它使用 jQuery 通过$.post. 我在 cfc 中有错误处理,但是如何捕捉这个例子:

氟氯化碳:

<cfcomponent>
    <cffunction name="function_1" access="remote" returnformat="json">
        ...
    </cffunction>
    ....
</cfcomponent>

调用页面:

<html>
    <head>...</head>
    <body>...
        <script>
            $.post("mycfc.cfc",{
                method: "functio_1", //notice the misspelling
                ....
        </script>
    </body>
</html>

这不会导致 javascript 错误,并返回 200 响应。

错误将是:

The method functio_1 was not found in component E:\inetpub\wwwroot\mycfc.cfc. Ensure that the method is defined, and that it is spelled correctly. <br>The error occurred on line -1. 

我知道这是基本示例,并且很容易修复,但我确信还有很多其他示例可能会发生类似的事情。

有什么想法吗?

4

1 回答 1

7

要处理缺失的函数,您可以查看 Ben Nadel 对 onMissingMethod() 函数的解释http://www.bennadel.com/blog/868-Learning-ColdFusion-8-OnMissingMethod-Event-Handler.htm

你总是可以把这个函数放在一个父类中,它可以被你的所有子类扩展,即cfc。

因此,例如,您可以使用带有此 onMissingMethod() 实现的 object.cfc,然后您的所有 cfc 都可以扩展它。

同时,如果您希望处理 ajax 调用中的任何其他错误,则可以从 cfc 为任何 ajax 调用创建一个标准返回类型结构,并向其中添加一个状态字段。因此,当您在 cfc 中遇到任何错误时,您可以将状态设置为失败,当一切正常时,您可以将状态设置为通过,稍后您可以在 ajax 返回函数中处理。

于 2013-09-30T15:19:58.770 回答