在 ColdFusion 8 中,您可以使用 cfscript 将函数声明为私有吗?

发布于 2024-07-05 06:48:25 字数 358 浏览 5 评论 0原文

通常,您使用 cfscript 创建一个函数,例如:

<cfscript>
    function foo() { return "bar"; }
</cfscript>

有没有办法将其声明为私有函数,仅适用于同一 cfc 内的其他方法?

我知道你可以使用标签来做到这一点:

<cffunction name="foo" access="private">
    <cfreturn "bar">
</cffunction>

但我不想重写这个已经用 cfscript 编写的大函数。

Normally you create a function using cfscript like:

<cfscript>
    function foo() { return "bar"; }
</cfscript>

Is there a way to declare this as a private function, available only to other methods inside the same cfc?

I know you can do it with tags:

<cffunction name="foo" access="private">
    <cfreturn "bar">
</cffunction>

But I don't want to have to rewrite this large function thats already written in cfscript.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

默嘫て 2024-07-12 06:48:25

ColdFusion 8 中没有。不过 CF9 中添加了它。

你不需要重写整个函数,你可以这样做:

<cffunction name="foo" returntype="string" output="false" access="private">
    <cfscript>
        return "bar";
    </cfscript>
</cffunction>

如果你可以访问CF9,新的语法是:

private string function foo() output="false" {
    return "bar";
}

Not in ColdFusion 8. It was added in CF9, though.

You don't need to rewrite the whole function, you can do this:

<cffunction name="foo" returntype="string" output="false" access="private">
    <cfscript>
        return "bar";
    </cfscript>
</cffunction>

If you have access to CF9, the new syntax is:

private string function foo() output="false" {
    return "bar";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文