如何在 JSONP 中处理 twitter 失败鲸鱼
我加载
http://search.twitter.com/search.json?callback=formatTweets&q=somehashTag×tamp="+new Date().getTime();
我突然得到了
Error: illegal character
Source File: http://search.twitter.com/search.json?callback=formatTweets&q=sunshine×tamp=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+"×tamp="+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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现这个问题有一些有趣的答案。总而言之,一种方法是将服务器返回的所有错误包装在 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.