我有cfcatch块应该捕获任何异常。一旦检测到错误,我构建自定义函数,将NativeErrorCode
作为参数。如果错误代码是我正在寻找的表示重复/ PK违规的错误代码我有自定义消息将返回给用户。如果错误代码不是我正在寻找的那个,那么将返回全局消息。但是,我遇到了ColdFusion返回错误信息的问题,即NativeErrorCode
不存在。我知道本机错误代码是为数据库类型保留的。有没有办法检查类型并防止此问题或有更好的方法来解决此问题?这是我的代码示例:
<cftry>
// Stored procedure call
<cfcatch type="any">
<cfset local.fnResults = {status : "400", message : Application.functions.errorCatch(cfcatch.NativeErrorCode)}>
</cfcatch>
</cftry>
public string function errorCatch(required string ErrorCode) {
local.message = "";
if(arguments.ErrorCode EQ 2627){
local.message = "Error! Cannot insert duplicate value.";
}else{
local.message = "Error! Please contact your administrator.";
}
return message;
}
您可以在上面看到我的errorCatch
函数如何工作以及我正在检查的代码。我仍然希望cfcatch
在我的代码中获取任何异常而不仅仅是数据库错误。
有两种方法可以处理你的分支捕获逻辑,有2个catch块,或者检查catch对象是否有你想要的数据。
在我的第一个例子中,我专门为数据库错误添加了一个catch块。如果错误的类型是数据库,则将包含本机错误代码,如果数据库驱动程序不包含本机错误代码,则为-1。对于any参数,我刚添加了您的默认返回字符串。您可能希望拥有可处理非数据库类型异常的自定义逻辑。
<cftry>
// Stored procedure call
<cfcatch type="database">
<cfset local.fnResults = {status : "400", message : Application.functions.errorCatch(cfcatch.NativeErrorCode)}>
</cfcatch>
<cfcatch type="any">
//Non database related error
<cfset local.fnResults = "Error! Please contact your administrator.">
</cfcatch>
</cftry>
在我的第二个示例中,我刚刚更新了您的errorCatch函数,并在我们尝试传递之前检查了NativeErrorCode是否存在。
<cfcatch type="any">
//Passing the default error code value, you may want custom logic here
<cfset local.fnResults = {
status : "400",
message : Application.functions.errorCatch( cfcatch.keyExists("NativeErrorCode")?cfcatch.NativeErrorCode:-1)
}>
</cfcatch>