如何在 JSONP 中处理 twitter 失败鲸鱼

发布于 2024-11-07 21:54:13 字数 801 浏览 0 评论 0原文

我加载

http://search.twitter.com/search.json?callback=formatTweets&q=somehashTag&timestamp="+new Date().getTime();

我突然得到了

Error: illegal character
Source File: http://search.twitter.com/search.json?callback=formatTweets&q=sunshine&timestamp=1305631097599
Line: 1, Column: 13
Source Code:
formatTweets(�

,因为 twitter 发送了 一只失败的鲸鱼,

你能想出一种方法来检测和处理这个问题吗?

我是

function loadTweets() {
  var head = document.getElementsByTagName('head');
  var script = document.createElement('script');
  script.type = "text/javascript";
  script.src = "http://search.twitter.com/search.json?callback=formatTweets&q="+hashTag+"&timestamp="+new Date().getTime();
  head[0].appendChild(script);
}

I load

http://search.twitter.com/search.json?callback=formatTweets&q=somehashTag×tamp="+new Date().getTime();

I suddenly got

Error: illegal character
Source File: http://search.twitter.com/search.json?callback=formatTweets&q=sunshine×tamp=1305631097599
Line: 1, Column: 13
Source Code:
formatTweets(�

because twitter sent me a fail whale.

Can you think of a way to detect and handle this?

Here is my invocation:

function loadTweets() {
  var head = document.getElementsByTagName('head');
  var script = document.createElement('script');
  script.type = "text/javascript";
  script.src = "http://search.twitter.com/search.json?callback=formatTweets&q="+hashTag+"×tamp="+new Date().getTime();
  head[0].appendChild(script);
}

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

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

发布评论

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

评论(1

幽梦紫曦~ 2024-11-14 21:54:13

我发现这个问题有一些有趣的答案。总而言之,一种方法是将服务器返回的所有错误包装在 JSON 中,另一种 提供链接 到 jQuery 的 JSONP 实现的漂亮的重新解释。

I found this question which had some interesting answers. To summarize, one approach is to wrap all errors returned by the server in JSON, and another provides a link to a nice looking reinterpretation of jQuery's JSONP implementation.

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