我花了几天时间尝试与我的扩展程序(声明为资源)打开的网页共享我的一个Firefox for Android扩展程序对象。问题是我已经阅读了很多关于不安全窗口的the last year's changes,所以我尝试了一个非常小的例子来使用新功能但是没有用。我复制了这些示例,我也尝试了自己的所有,但没有办法复制具有功能的现有对象。看,我在内容窗口中有一个非常大的对象要克隆,但我决定用一个小对象进行测试:
//From addon
var dog = {
name: 'Spike',
woof: function(){alert('woof woof!')}
};
然后我尝试将此对象复制到活动窗口中:
//From addon
var contentWindow = window.BrowserApp.selectedBrowser.contentWindow;
contentWindow.dog = Components.utils.cloneInto(
dog,
contentWindow,
{cloneFunctions: true}
);
之后,我试着检查真正复制的内容:
alert(contentWindow.dog); //Shows: [object Object]
alert(contentWindow.dog.name); //Shows: Spike
alert(contentWindow.dog.woof); //Shows: undefined
所以,我可以克隆对象而不是函数,即使我声明" cloneFunctions:true"。
我还尝试创建一个空对象然后分配函数(在我这么大的原始对象中考虑很多工作),并且没有工作:
function greetme(user) {
return "cheers " + user;
}
var foo = Components.utils.createObjectIn(contentWindow,{defineAs: "foo"});
Components.utils.exportFunction(greetme, foo, {defineAs: "greetme"});
//foo is not an object in current window
所以...任何想法都是受欢迎的,我真的不知道该怎么做,因为理论和给定的例子不再适用。
提前谢谢(很多)!!
https://blog.mozilla.org/addons/2014/04/10/changes-to-unsafewindow-for-the-add-on-sdk/
答案 0 :(得分:2)
您的代码已经或多或少正确,但是,您在使用XRay包装器时遇到了麻烦。并且,为了让内容窗口(网站)实际看到您dog
,您还需要在内容窗口中放弃XRay包装器。
我使用当前的Firefox for Nightly测试了以下内容(对不起,我的发行版Firefox没有配置为远程调试)。
在主进程(使用WebIDE)中执行此操作:
var dog = {
name: 'Spike',
woof: function () {
alert(contentWindow.document.title + "\n" + this.name + ': woof woof!');
}
};
var contentWindow = BrowserApp.selectedBrowser.contentWindow;
// Need to unwrap this, so that we can actually set properties on the
// object itself and not just the wrapper. Aka. make "dog" visible to
// the actual script.
var unsafeWindow = Components.utils.waiveXrays(contentWindow);
// Define Window.dog (on the unsafe window, so that the website code
// can actually see it).
unsafeWindow.dog = Components.utils.cloneInto(dog, contentWindow, {
cloneFunctions: true
});
然后我切换到实际标签并进行了测试:
dog.woof();
它有效。