0

提前致谢 。

我正在创建一个函数,如下所示。//requestFile 在 NPAPI 插件中实现,当任务完成时将 initFS 作为 NPObject 我在此对象上调用 NPN_InvokeDefault。

window.requestFile("test",true,initFS);
//After this function initFS is getting called.
function initFS(fs) {
 alert('Inside initFS'); //alert is coming.
 //testFunc is implemented in NPAPI Plugin, it will return true if it is get called
 alert(fs.testFunc());   // It is not getting called.
 alert(fs.testCall());   //It is not getting called.
 }
function testCall() {
alert('Inside testCall function');
}

在调用 NPN_InvokeDefault 后,我​​没有得到它从插件返回的对象类型。以及如何在 javascript 中使用它。具体来说,我想专门为我的插件返回 NPObject,并想从 javascript 调用插件方法。

如何将异步 Javascipt 函数与 NPAPI 插件一起使用?任何样品将不胜感激。

4

1 回答 1

1

使用这个(小提琴)作为起点:

    var testcall=function() {
    alert('Inside testCall function');
    }

    var fs={
        testFunc: function(){console.log("succes")},
        testCall:testcall
    }


    //After this function initFS is getting called. 

    initFS(fs) //<--PASS in fs also

function initFS(fs) {
     alert('Inside initFS');
     //testFunc is implemented in NPAPI Plugin, it will return true if it is get called
     fs.testFunc();   // It is not getting called.
     fs.testCall();   //It is not getting called.
     }

您需要将fs对象传入initFS

于 2012-09-10T15:49:30.627 回答