ColdFusion:使用 AJAX 调用组件,从视图源中隐藏?

发布于 2024-11-07 11:30:31 字数 80 浏览 1 评论 0原文

我很好奇...我喜欢使用 jQuery 进行异步调用,但我不希望通过查看源代码向公众提供我的组件...

对此推荐的解决方案是什么?

I'm curious... I love the asynchronous calls with jQuery, but I don't want my components available to the public by view source...

What is the recommended solution for this?

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

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

发布评论

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

评论(2

小红帽 2024-11-14 11:30:31

您可以在 webroot 中创建一个可访问的外观,只需将所有输入传递到 webroot 外部的 CFC 并返回结果。

这样,通过直接调用 webroot 中的 cfc 可见的所有内容都是函数和变量名称,并且所有业务逻辑都在视线之外。

You could make a facade accessible in the webroot that simply passes all inputs to a CFC outside the webroot and returns the results.

That way all that's visible via a direct call to the cfc in the webroot are function and variable names, and all the business logic is out of sight.

听风吹 2024-11-14 11:30:31

您可以使用基于路由 URI 的框架,例如 Taffy[1]。 Taffy 使用 RESTful 架构让您定义用于调用组件的 URI。客户端永远不会看到您实际的 CFC 文件夹结构或文件名。

[1] http://atuttle.github.com/Taffy/

You could use a route URI-based framework like Taffy[1]. Taffy uses a RESTful architecture to let you define the URIs used to call your components. The client never sees your actual CFC folder structure or filenames.

[1] http://atuttle.github.com/Taffy/

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