1

我希望有人能帮助我。我在使用 AS3 的 FlashBuilder 4 中具有以下功能:

protected function doIt():void
    {
        if (ExternalInterface.available) {
            var retData:String;
            retData = ExternalInterface.call("returndata");
            if(retData != null) {
                eidLbl.text = retData.toString();
            } else {
                eidLbl.text = "Returned Null";
            }
        } else {
            eidLbl.text = "External Interface not available";
        }                
    }

以及它调用的以下javascript函数:

var fql_query = "some query format";
function returndata(){
    return fql_query;
}

当我从我的网站运行这些时,一切正常!flash 文件调用 javascript 函数并将“某种查询格式”返回到正确的文本字段中。

但是,如果我将闪光灯功能更改为如下:

protected function doIt():void
{
    if (ExternalInterface.available) {
        var retData:String;
        retData = ExternalInterface.call("runFQL",uidLbl.text);
        if(retData != null) {
            eidLbl.text = retData.toString();
        } else {
            eidLbl.text = "Returned Null";
        }
    } else {
        eidLbl.text = "External Interface not available";
    }                
}

和以下javascript函数:

function runFQL(id){
    var user_id = id;
    var page_id = "**********"; // the page id that is actually there is valid
    var fql_query = "SELECT uid FROM page_fan WHERE page_id="+page_id+" and uid="+user_id;

    FB.api({
        method: 'fql.query',
        query: fql_query
    },
    function(response){
        if (response[0]) {
                var uid = response[0].uid;
                window.alert(uid); //100001632043058
                return uid;
        } else {
                window.alert("return 1000");
        }
    });    
};

我的问题是,当我运行这个时,它会传入 id,运行查询,并准确地拉回 uid 并将其显示在警报中但(这是我的问题)它不会将其传回以闪入回报。它每次都以 null 或 undefined 的形式返回。

谁能告诉我我错过了什么。我已经在谷歌上搜索了几个小时。

4

2 回答 2

0
function(response){
    if (response[0]) {
        var uid = response[0].uid;
        window.alert(uid); //100001632043058
        return uid;
    } else {
        window.alert("return 1000");
    }
});

在 FB.api 函数完成时调用,而不是在您调用 runFQL 时调用。所以 runFQL 每次都运行并返回 undefined 。

您可以做的是,一旦 FB.api 调用完成,调用 flash 应用程序内的函数并在那里传递返回值。所以基本上在 Flash 中执行 ExternalInterface.addCallback 并从 javascript 调用该函数。

function runFQL(id){
    var user_id = id;
    var page_id = "**********"; // the page id that is actually there is valid
    var fql_query = "SELECT uid FROM page_fan WHERE page_id="+page_id+" and uid="+user_id;

    FB.api({
        method: 'fql.query',
        query: fql_query
    },
    function(response){
        if (response[0]) {
                var uid = response[0].uid;
                window.alert(uid); //100001632043058
                // needs ExternalInterface.addCallback("sendDataBack",handleData); in your 
                // as3 code
                yourSwf.sendDataBack(uid); 
        } else {
                window.alert("return 1000");
        }
    });    
};
于 2012-07-17T00:28:02.370 回答
0

你有一个非常小的工作流程问题。在您的 JavaScript 代码中,您正在调用 FB api,然后函数结束,在这种情况下,它将返回一个未定义的值,因为没有返回任何内容。但是您认为无名函数是在实际上还没有被调用时返回的函数,因为 API 甚至没有得到响应。您需要做的是更改以下代码行。

return uid;

myHTMLFlashObject.someFunctionName(uid);

在您的 Flash 项目中,您需要添加一个函数someFunctionName并将其添加为 ExternalInterface 回调函数。
请记住 API 不是异步的,因此您可以期望函数 runFQL 在 API 发送响应之前很久就返回 undefined。

于 2012-07-17T05:13:39.417 回答