在 cffunction 中设置对远程的访问包括 application.cfm 页面
当我设置 cffunction 的远程访问权限(以便我可以通过 AJAX 调用它)时,该调用将返回 Application.cfm 模板中的 HTML。
有什么办法可以解决这个问题,还是我必须将 HTML 从 Application.cfm 中移出?
When I set a cffunction's access to remote--so I can call it through AJAX--the call returns the HTML I have in my Application.cfm template.
Is there any way around this, or do I have to move the HTML out of Application.cfm?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将被视为预期行为。我建议不要在 Application.cfm 中输出内容。考虑使用自定义标签来包装页面,或者更好地切换到使用 Application.cfc 并使用自定义标签。
This would be considered expected behavior. I'd suggest not outputting content within your Application.cfm. Consider using custom tags for wrapping your pages or better yet switch to using Application.cfc and use custom tags.