我正在建立一个简单的XPCOM组件。但是当我试图调用这个xpcom组件的方法时,firefox每次都会崩溃。
文件层次结构如下:
HelloXpcom.xpi
---chrome.manifest
---install.rdf
---chrome
------content
---------sample.xul
---components
------HelloXpcom.dll
------nsISample.xpt
chrome.manifest代码段
content sample chrome/content/
interfaces components/nsISample.xpt
binary-component components/HelloXpcom.dll
overlay chrome://browser/content/browser.xul chrome://sample/content/sample.xul
我的界面idl:
#include "nsISupports.idl"
[scriptable, uuid(F7F48977-382E-461B-B04A-44567EE6D45A)]
interface nsISample : nsISupports
{
attribute string value;
void writeValue(in string aPrefix);
void poke(in string aValue);
};
使用xpidl.exe生成npISample.h和npISample.xpt。 并且所有的实现方法几乎都没有,只是做一些简单的事情。
sample.xul
<?xml version="1.0"?>
<overlay id="sample"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<statusbar id="status-bar">
<script>
function DoXPCOM()
{
try {
alert("1");
var sample = Components.classes["@baofeng/sample;1"].createInstance();
alert("2");
sample = sample.QueryInterface(Components.interfaces.nsISample);
alert("3");
dump("sample = " + sample + "\n");
}
catch(err) {
alert(err);
return;
}
var res = sample.SetValue("123");
var str = "";
obj.GetValue(str);
alert(str);
}
</script>
<button label="xpcom" oncommand="DoXPCOM();"/>
</statusbar>
</overlay>
"alert("1");"
已执行,它在"Components.classes["@baofeng/sample;1"].createInstance();"
崩溃,Firefox会识别联系人ID "@baofeng/sample;1"
,如果没有,则应该有一些信息,如"@baofeng/sample;1"
未定义的弹出窗口。所以createInstance()方法就是重点
有人可以帮我解决这个问题吗?