资源解释为脚本,但使用 MIME 类型 application/json 进行传输

发布于 2024-12-09 09:50:14 字数 439 浏览 1 评论 0原文

我已按照说明使用以下代码从 vimeo 获取 json 数据:

$.getJSON('http://www.vimeo.com/api/v2/album/' + vimeoId + '/info.json?callback=?', {
            format: "json",
            }, function(data) {
                        // function
                        });

但我在 chrome 中收到此警告:

资源解释为脚本但以 MIME 类型传输 应用程序/json。

我找到了一些带有解决方案的帖子,但似乎没有消除错误。

对此的任何建议将不胜感激。

C

I have followed intructions to get json data from vimeo with the follwoing code:

$.getJSON('http://www.vimeo.com/api/v2/album/' + vimeoId + '/info.json?callback=?', {
            format: "json",
            }, function(data) {
                        // function
                        });

But I get this warning in chrome:

Resource interpreted as Script but transferred with MIME type
application/json.

I found a few post with solutions but non seemed to remove the error.

Any advise on this will be much appreciated.

C

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

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

发布评论

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

评论(1

羁绊已千年 2024-12-16 09:50:14

这是 Vimeo 方面的一个错误。它是 JSONP,它实际上是一个脚本,所以它应该是一个脚本 MIME 类型,例如application/javascripttext/javascript

It's a bug on Vimeo's side. It's JSONP, which is really a script, so it should be a script MIME type such as application/javascript or text/javascript.

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