作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 AJAX 调用从外部服务器访问某些资源。但服务器将我重定向到另一个位置并且不返回任何内容。我想获取该位置的 url....
JS Fiddle 示例... http://jsfiddle.net/5KtVE/2/
最佳答案
由于这是跨域请求,您必须将 dataType
选项设置为 jsonp
,这应该可以工作:
$.ajax({
url: 'https://graph.facebook.com/mahernazeer/picture',
dataType: 'jsonp',
success: function(imageUrl) {
console.log(imageUrl); // https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/274173_100002201391414_6210108_q.jpg
}
});
关于jquery - 如何从服务器端停止重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10549314/
我是一名优秀的程序员,十分优秀!