我正在尝试将数组从插件传递给Javascript。但我无法做到。我已经提到过类似的其他帖子,其中给出的解决方案是首先获取Dom窗口对象,然后使用带有NPN_GetStringIdentifier(“array”)的NPN_Invoke调用该函数,然后推送数组元素。但是当我尝试它时,它崩溃在NPN_Invoke上。我无法找出原因,是因为Dom的NPObject没有任何与'array'相关的方法或其他原因?
这是我的插件代码...(我的数组数据是0,1,2,... 9循环中i的值)
bool ScriptableObject::method_process_getarray_intval(const NPVariant* args, uint32_t argCount, NPVariant* result)
{
printf("\n DATATYPE method_process_getarray_intval");
NPObject DomWin;
NPVariant Array;
NPError l_RetErr;
bool l_RetBool;
NPIdentifier l_NPId;
//Get the Window Object
l_RetErr = NPN_GetValue(m_npp,NPNVWindowNPObject,&DomWin);
if(l_RetErr == NPERR_NO_ERROR)
printf("\n \t Got the Dom Window Object");
else
printf("\n \t Error occured while getting the Dom Window Object");
//Get the Array by invoking DomWin using ARRAY method of browser
//Get string Identifier for Array
l_NPId = NPN_GetStringIdentifier("Array");
l_RetBool = NPN_Invoke(m_npp,&DomWin,l_NPId,NULL,0,&Array);
if(l_RetBool)
printf("\n \t Invoked for Array");
else
printf("\n \t Error while Invoking for Array");
//Fill the array elements using PUSH method of Array NPVariant
l_NPId = NPN_GetStringIdentifier("push");
for(int i = 0;i < 10; i++)
{
NPVariant *arg =(NPVariant *) g_browser->memalloc(sizeof(NPVariant));
INT32_TO_NPVARIANT(i,*arg);
NPVariant result;
l_RetBool= NPN_Invoke(m_npp,Array.value.objectValue,l_NPId,arg,1,&result);
if(l_RetBool)
printf("\n \t Invoked for Array i : %d",i);
else
printf("\n \t Error while Invoking for Array i :%d",i);
}
return true;
}
我的html页面看起来像这样。我不知道这是不对的。如果有任何更正,请告诉我......
<html>
<script type="text/javascript">
var inarray ;
function handleEvent(e) {
...
if (e.keyCode == 55)
{
document.getElementById('arrayint_ele_get').innerHTML = inarray;
process_getintarray(inarray);
}
}
</script>
<script type="text/javascript">
function process_getintarray(inarray)
{
if(obj)
{
obj.process_getarray_intval(inarray);
}
}
</script>
<body onload="init()" onkeydown="handleEvent(event)">
<div id="sq" style="width:50px;height:50px;position:relative;left:0px;border:1px solid #333333;background-color:#FF0000"></div>
......
<div style="position:absolute;left:100px;top:10px"> PLUGIN-SCRIPTS </div>
<div id ="arrayint_ele_get" style="position:absolute;left:100px;top:300px"> ARRAY_GETINT VAL </div>
.....
</body>
</html>
欢迎任何建议......
答案 0 :(得分:0)
从我给你的东西中我可以收集的东西很少,我猜你的NPNFuncs函数指针没有正确设置(因此你调用的是一个坏函数)或者某种程度上你的m_npp已经损坏了。当然,如果其中任何一个都是这种情况,我认为请求DOM Window对象也会死掉。
我可能需要更多的代码来推测除此之外;你可能想考虑使用FireBreath或nixysa而不是自己做所有事情;它让你专注于你的实际插件,而不是处理NPAPI。只是一个想法。
接下来想,是NPN_Invoke调用g_browser-&gt;调用吗?因为你提到你正在检查hasmethod然后你转身并打电话给NPN_HasMethod;如果没有正确连接它肯定会导致这样的问题。
归结为某个地方,你的一个指针是关闭的;可能性是:
我看不出它是怎么回事。