跨服务器 JavaScript 问题?一台服务器上的js,访问另一台服务器
我有一个问题。我有一个带有 javascript 的 Coldfusion 服务器,并且我在另一台服务器上使用 Flex。我需要使用 CF 服务器中的 javascript 来访问 Flex 服务器,并且想知道是否会出现任何跨服务器(尽管是同一域)问题。谢谢大家
I had a question. I have a coldfusion server that has javascript, and I am using Flex on another server. I need to use javascript from the CF server to access the Flex server, and wanted to know if there would be any cross-server (same domain though) issues that would arise. Thanks guys
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 CORS 代替 Ajax(HTML 5 的一部分)。Ajax 不允许跨站点脚本。但 CORS 允许。它们都是相同的,但是您应该在请求时设置一些额外的标头,服务器应该检查标头并响应它们。看看这个页面。以及这个
You can use CORS instead of Ajax, part of HTML 5. Ajax doesn't allow Cross Site Scripting. But the CORS allows. They are all the same, but you should set some additional headers when request, and server should check the headers and response them. take a look at this page. and also this one
不会有任何问题。
JavaScript 并不关心您使用什么语言来提供页面和/或数据。它唯一关心的是 1) 它是否有效,2) 它是否来自与请求页面相同的域。
别的都无所谓。
There won't be any issues.
JavaScript does't care what language you use to serve up your pages and/or data. The only thing it cares about is 1) is it valid and 2) is it from the same domain as the requesting page.
Nothing else matters.