我正在尝试在另一个 ajax 调用成功的情况下进行 ajax 调用。这在服务器上运行良好,localhost
但不在服务器上。
这就是我正在做的事情。
FB.api('/me', function(response) {
$.ajax({
type:"POST",
url:"http://gagsterz.com/index.php/home/InsertUser",
data:{id: response.id,name:response.name,at:self.access_token},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.responseText);
$('#error').html(xhr.responseText);
},
success:function(data)
{
FB.api('/me/friends',function(response) {
if(response.data)
{
countfriends = 0;
filedata="";
self.friendsID = new Array();
self.friendsName = new Array();
$.each(response.data,function(index,friend) {
filedata+=friend.id+"\t"+friend.name+"\t"+self.UID+"\n";
countfriends++;
self.friendsID.push(friend.id);
self.friendsName.push(friend.name);
});
if($.trim(data)=="InsertFriends")
{
$.ajax({
url:"http://gagsterz.com/index.php/home/InsertFBFriends",
type:"POST",
data: {fdata : filedata },
success:function(r)
{
alert("success");
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.responseText); },
});
}
});
});
现在,当我单击按钮时。第一个 ajax 调用(parent)
工作正常,并从 php 脚本返回我InsertFriends
作为答案。现在 if 条件中存在的 ajax 请求InsertFriends
无法正常工作,并且xhr.responseText
是空字符串。现在我不知道为什么它不能正常工作。为了简单起见,我只是abc
在服务器端脚本上回显,但我不知道这有什么问题。
我在Chrome Network Tab
.
那么为什么它不起作用呢?