我正在编写一个简单的napapi插件,我必须在html页面中打印从javascript函数传递的值。但是我在做这件事时遇到了问题。它在firefox上运行正常。但我想在qt fancybrowser示例中做到这一点。无论我在javascript代码中传递什么值,打印的值始终为0。
javascript代码如下:
<html>
.....
<script>
function process_data()
{
PluginObject = document.getElementById("Object");
var i =100;
if(PluginObject){
ret = PluginObject.process_Data(i);
}
}
</script>
....
</html>
插件代码如下:
.....
bool ScriptableObject::process_Data(const NPVariant* args, uint32_t argCount, NPVariant* result)
{
printf(" process_Data\n");
printf("\t argCount : %d\n",argCount);
int tempi =args[0].value.intValue;
int tempf =args[0].value.doubleValue;
printf("type: %d type: %u\n",args[0].type,args[0].type);
printf("tempi : %d tempf : %f\n",tempi,tempf);
}
......
输出如下:
process_Data
argCount : 1
type: 4 type: 4
tempi : 0 tempf : 0.000000
实际上它应该打印100,这是从javascript传递给var i的值。
欢迎任何建议/意见
提前致谢
答案 0 :(得分:1)
为NPAPI方法提供数字参数时,未定义是否会收到Int32
或Double
变体,因此您必须在代码中处理这两种情况。
此外,NPVARIANT_TO_*
宏仅提取相应的值 - 它们不进行任何转换。
要从任何数字参数中提取整数,您必须编写自己的代码,例如:类似的东西:
bool convertToInt(const NPVariant& v, int32_t& out) {
if (NPVARIANT_IS_INT32(v)) {
out = NPVARIANT_TO_INT32(v);
return true;
}
if (NPVARIANT_IS_DOUBLE(v)) {
out = NPVARIANT_TO_DOUBLE(v);
return true;
}
// not a numeric variant
return false;
}
答案 1 :(得分:-1)
从这里http://code.google.com/p/chromium/issues/detail?id=68175和https://bugs.webkit.org/show_bug.cgi?id=49036我明白这是WEB工具包中的错误,所以我接下来添加 在“npruntime.h”中:
#define FIX_WEB_KIT_INT32_BUG
#ifdef FIX_WEB_KIT_INT32_BUG
#define NPVARIANT_IS_INT32(_v) ((_v).type == NPVariantType_Int32 || (_v).type == NPVariantType_Double)
#define NPVARIANT_TO_INT32(_v) ((_v).type == NPVariantType_Double ? (_v).value.doubleValue : (_v).value.intValue)
#else
#define NPVARIANT_IS_INT32(_v) ((_v).type == NPVariantType_Int32)
#define NPVARIANT_TO_INT32(_v) (_v).value.intValue)
#endif
在web上(来自javascript)我使用parseInt(myVal,10)来传递给插件的所有int值。在Google Chrome和Safari上查看。