CFEXIT 在 CFC 的函数内部起什么作用?
在函数内、cfc 内做什么?
和
一样吗?
我正在重构一些遗留代码,想知道是否需要特别注意它......
谢谢。
What does <cfexit>
do inside a function, inside a cfc?
Is it the same as <cfabort>
?
I'm refactoring some legacy code, and wonder if I need to pay special attention to it...
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对基本
行为的回忆是:cfexit
退出 cfc 函数。但继续处理调用页面。
更新:
下的行为
我刚刚确认了 CF9.0.1结果(使用 cfexit)
结果(使用 cfabort)
Test.cfm
Foo.cfc
My recollection of how a basic
<cfexit>
behaves is:cfexit
exits the cfc function. Butprocessing of the calling page continues.
Update:
I just confirmed that behavior under CF9.0.1
Results (using cfexit)
Results (using cfabort)
Test.cfm
Foo.cfc