这是我的代码(在firefox插件中)
this.something_something = function (the_actual_url) {
this.this_version = null;
try {
// Firefox 4 and later; Mozilla 2 and later
Components.utils.import("resource://gre/modules/AddonManager.jsm");
AddonManager.getAddonByID("parasites@maafire.com", function (addon) {
this_version = addon.version;
});
}
catch (ex) {
// Firefox 3.6 and before; Mozilla 1.9.2 and before
var em = Components.classes["@mozilla.org/extensions/manager;1"].getService(Components.interfaces.nsIExtensionManager);
var addon = em.getItemForID("parasites@maafire.com");
this_version = addon.version;
}
this.timervar = setTimeout(function () {
this.get_plugin_version(this.this_version);
}, 2000);
}
this.get_plugin_version = function (blah) {
alert("aa:" + blah);
}
我收到错误:
错误:this.get_plugin_version不是函数 源文件:chrome://mf_monkey_project/content/overlay.js行:476
我做错了什么?
对于搞砸了的格式感到抱歉,但我删除了大部分代码以适应这里,它使格式化所有麻烦。
答案 0 :(得分:1)
因为setTimeout
回调将在全局上下文中执行。
您可以使用bind()
[docs]方法绑定回调所需的上下文和参数。
this.timervar=setTimeout( this.get_plugin_version.bind(this, this.this_version),
2000 );
如果您不希望this.this_version
的当前值永久绑定为第一个参数,请将其从.bind()
调用中删除。