使用 oembed - json 响应(在客户端 javascript 中)
如果 oembed 提供商仅输出 json 和 xml,这是否意味着无法通过客户端 JavaScript 使用它? (向提供商发送 $.ajax 请求)?
我们是否只能使用允许在 JavaScript 中进行 jsonp 回调的 oembed 提供程序?
谢谢, 韦斯利
If an oembed provider is only outputting json and xml, does that mean it is impossible to use this via client side javascript? ($.ajax request to the provider)?
Can we only use oembed providers that allow for a jsonp callback in javascript?
Thanks,
Wesley
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不能跨域使用ajax。
Jsonp 是一个选项,另一个选项是有一个服务器端脚本,该脚本将从提供者获取数据,然后对该脚本进行 ajax 调用以返回获取的数据
you cannot use ajax across different domains.
Jsonp is an option, other option is to have a server side script which will fetch the data from the provider and then make an ajax call to that script to return the fetched data