gpt4 book ai didi

jquery ajax请求仅在firefox中有效

转载 作者:行者123 更新时间:2023-12-01 07:27:53 25 4
gpt4 key购买 nike

我有以下 html,当我单击按钮时,警报仅在 mozilla firefox 中起作用。为什么?

<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$.ajax({url:"https://graph.facebook.com/1524623057/",
success:function(){
alert(1);
}});
});});
</script>
</head>
<body>

<button>send request</button>
</body>
</html>

最佳答案

来自 facebook 的结果不是正确的 json,因为它有换行符和制表符 - 而且,它作为文本/javascript 提供。

但是 Facebook 支持 jsonp,因此您可以这样做:

$.ajax({
url: 'https://graph.facebook.com/1524623057/',
type: 'get',
dataType: 'jsonp'
}).done( function( data ){
// the data!
});

这基本上会附加到 ?callback=jQuery23423234234 或为 facebook 生成的任何随机 id,返回一个可以调用的函数。

如果您想自己解析它,请执行以下操作:

告诉$.ajax使用类型“text”,例如

$.ajax({
url: 'https://graph.facebook.com/1524623057/',
dataType: 'text'
})

然后清理它。这是关于清理此类 js 的答案,因此您可以使用 $.parseJSON 而不必将其扔到新函数中或对其进行评估。 Converting multiline, indented json to single line using javascript

这样,您就可以var data = $.parseJSON(cleanUpJsonFromFacebook)并访问对象属性。

关于jquery ajax请求仅在firefox中有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8391767/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com