dqrm8199 2013-08-07 11:48
浏览 22
已采纳

在javascript函数中检索变量值

I am using facebook API for my project and getting some data in following manner in var mydata

if (response.status === "connected")
        {
            LodingAnimate(); //Animate login
            FB.api('/me?fields=movies,email', function(mydata) { //--
            console.log(mydata);
              if(data.email == null)
              {
                 alert("You must allow us to access your email id!");
                 ResetAnimate();
             }
   }

I dont have any issue with this code. But I want to send this data using ajax call to process and insert into database.

My ajax call:

function AjaxResponse()
 {
    var send=document.ge(mydata)      **//Here I want to fetch mydata from previous code**
    var datas = document.elements['id'].value;
    var s = 'connect=1'; 
     $.ajax({
    type: "POST",
    url: "process_facebook.php",
    data: s,send                   **//Is this correct way to send s and send togather? I have tried with only 's' which works fine but dont know about both togather**
    }).done(function(result) {
    $("#fb-root").html(result);
    });
   }

Can someone please assist how to fetch mydata in javascript function and review the code.

  • 写回答

1条回答 默认 最新

  • dot_0620 2013-08-07 11:51
    关注

    Since the Facebook API call you're making is asynchronous, you can't return the value from your ge function.

    Instead, use a callback, just like Facebook and everyone else does. See below.

    Separately, the answer to the second unrelated question hidden in your code snippet is "no, that's not how you do that". I've given you a pointer to how to do that below as well.

    function AjaxResponse()
    {
        // Callback here----v arg ---v
        document.ge(mydata, function(send) {
            var datas = document.elements['id'].value;
            $.ajax({
                type: "POST",
                url: "process_facebook.php",
                data: {
                   connect: 1,
                   paramname: mydata      // <=== I don't know what the name of this param is
                }
            }).done(function(result) {
            $("#fb-root").html(result);
        });
    }
    

    ..and have your code call the callback when the Facebook call calls its callback.

    function ge(data, callback) {
        // ...
        if (response.status === "connected") {
            LodingAnimate(); //Animate login
            FB.api('/me?fields=movies,email', function (mydata) { //--
                console.log(mydata);
                if (data.email == null) {
                    alert("You must allow us to access your email id!");
                    ResetAnimate();
                }
                else {
                    callback(data); // <=== Trigger the callback
                }
            }
           // ...
        }
        // ...
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 用土力学知识进行土坡稳定性分析与挡土墙设计
  • ¥15 帮我写一个c++工程
  • ¥30 Eclipse官网打不开,官网首页进不去,显示无法访问此页面,求解决方法
  • ¥15 关于smbclient 库的使用
  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?