防止ColdFusion调试信息返回jQueryAjax

防止ColdFusion调试信息返回jQueryAjax,jquery,coldfusion,Jquery,Coldfusion,在进行Ajax调用时,我的返回结果成功返回预期值加上调试器中的所有html。有没有办法在不关闭调试的情况下不返回调试信息?这是我的密码: $.ajax({ type: "POST", url: "/ajax/ajax_test.cfc?method=ajaxTest&returnformat=plain", data:"field1=17", success: function(response) { var

在进行Ajax调用时,我的返回结果成功返回预期值加上调试器中的所有html。有没有办法在不关闭调试的情况下不返回调试信息?这是我的密码:

$.ajax({
        type: "POST",
        url: "/ajax/ajax_test.cfc?method=ajaxTest&returnformat=plain",
        data:"field1=17",
        success: function(response) {
        var r=response;
        alert(r);
        }
        });

-认为这在method@orangepips,谢谢,这正是我要找的。这看起来很像。
<cfsetting showdebugoutput="false">