当前位置 : 主页 > 网络推广 > seo >

coldfusion – 如何检索enablecfoutputonly的当前值?

来源:互联网 收集:自由互联 发布时间:2021-06-16
我们正在使用Coldfusion 9. 是否有一种简单的方法可以知道在特定请求期间enablecfoutputonly是否已设置为true? 我现在无法使用CF9进行测试,但在CF10中,可以通过检查输出对象从getPageContext()访
我们正在使用Coldfusion 9.

是否有一种简单的方法可以知道在特定请求期间enablecfoutputonly是否已设置为true?

我现在无法使用CF9进行测试,但在CF10中,可以通过检查输出对象从getPageContext()访问它:

<cfscript>
   out = getPageContext().getOut();
   // Is the cfsetting enablecfoutputonly value currently true?
   isSettingEnabled = out.getDisableCount() >  0;
   WriteOutput("isSettingEnabled="& isSettingEnabled &"<br>");
   // Is output currently allowed?
   isOuputtingEnabled = out.getDisableCount() == 0 || out.getOutputCount() > 0;
   WriteOutput("isOuputtingEnabled="& isOuputtingEnabled &"<br>");
</cfscript>

..或使用反射:

<cfscript>
    out = getPageContext().getOut();
    internalMethod = out.getClass().getDeclaredMethod("isOutputEnabled", []);
    internalMethod.setAccessible( true );
    isOuputtingEnabled = internalMethod.invoke( out, [] );
   // is output currently allowed?
    WriteOutput("isOuputtingEnabled="& isOuputtingEnabled);
</cfscript>
网友评论