我已经实现了“退出应用程序”观察者,
TestApp.ns(function() {
with (TestApp.Lib) {
//Ci = Components.interfaces;
theApp.ExitObserver = function() {},
// Called on uninstall
theApp.ExitObserver.prototype.observe = function(subject, topic, data){
if (topic == "quit-application"){
alert(" exit ");
}
};
}
});
我是我的 Main.js 文件,我将这个 ExitObserver 称为如下所示。
theApp.exitObserver = new theApp.ExitObserver();
observerService.addObserver(theApp.exitObserver, "quit-application", false);
当用户退出浏览器时,我的警报不起作用。这个实现有什么问题吗?