AJAX 可以从远程服务器请求数据吗?
我可以在 JavaScript 中使用 XMLHttpRequests 来请求与发出请求的服务器不同的服务器上的文件吗?
谢谢。
Can I use XMLHttpRequests in JavaScript to request a file on a different server than the one from where the request was made?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要使用名为 JSONP 的方法。
最好的方法之一是使用 jQuery 来减少页面和服务器之间的代码和担忧,而您需要做的就是:
You need to use a method that is called as JSONP.
One of the best ways is to use jQuery to reduce the code and worries between your page and the server, and all you need to do is:
仅当远程服务器支持 JSONP 或 HTTP
Access-Control
标头。公共 JSON API(例如 Google.com、Facebook.com 等提供的 API)经常这样做。
Only if the remote server supports JSONP or HTTP
Access-Control
headers.Public JSON API's (like the ones provided by Google.com, Facebook.com, etc) often do.