工人陷入沙箱?

Worker stuck in a Sandbox?

试图弄清楚为什么我可以在主线程上用休息 API 登录,但在工作线程中却不行。所有通信渠道都运行良好,我可以毫无问题地加载它。但是,当它尝试发送一些数据时它只是挂起。

    [Embed(source="../bin/BGThread.swf", mimeType="application/octet-stream")]      
    private static var BackgroundWorker_ByteClass:Class;
    public static function get BackgroundWorker():ByteArray
    {
        return new BackgroundWorker_ByteClass();
    }

在测试脚本上:

    public function Main() 
    {
        fBCore.init("secrets", "my-firebase-id");
        trace("Init");
        //fBCore.auth.addEventListener(FBAuthEvent.LOGIN_SUCCES, hanldeFBSuccess);
        fBCore.auth.addEventListener(AuthEvent.LOGIN_SUCCES, hanldeFBSuccess);
        fBCore.auth.addEventListener(IOErrorEvent.IO_ERROR, handleIOError);

        fBCore.auth.email_login("admin@admin.admin", "password");

    }

    private function handleIOError(e:IOErrorEvent):void 
    {
        trace("IO error");
        trace(e.text); //Nothing here
    }

    private function hanldeFBSuccess(e:AuthEvent):void 
    {
        trace("Main login success.");
        trace(e.message);//Complete success.
    }

当 class 通过从 Main 传递给初始化的内部工作者通道触发时:

原始:

    private function handleLoginClick(e:MouseEvent):void 
    {
        login_mc.buttonMode = false;
        login_mc.play();
        login_mc.removeEventListener(MouseEvent.CLICK, handleLoginClick);

        log("Logging in as " + email_mc.text_txt.text);
        commandChannel.send([BGThreadCommand.LOGIN, email_mc.text_txt.text, password_mc.text_txt.text]);
    }

工人:

                    ...
                    case BGThreadCommand.LOGIN:
                        log("Logging in with " + message[1] + "::" + message[2]); //Log goes to a progress channel and comes to the main thread reading the outputs successfully.
                        fbCore.auth.email_login(message[1], message[2]);
                        fbCore.auth.addEventListener(AuthEvent.LOGIN_SUCCES, loginSuccess); //Nothing
                        fbCore.auth.addEventListener(IOErrorEvent.IO_ERROR, handleLoginIOError); //Fires
                        break;

授权休息Class:https://github.com/sfxworks/FirebaseREST/blob/master/src/net/sfxworks/firebaseREST/Auth.as

这是工作人员限制还是安全沙箱问题?我深有感触是两者中的后者。如果是这种情况,我将如何以一种同时赋予它适当的行为权限的方式加载工作人员?

完全忽略了 createWorker 函数中的 giveAppPrivelages 属性。对不起计算器。有时当我前一天晚上睡得很少(或 none 在这种情况下)时,我会提出糟糕的问题。