Firefox 3.6 中缺少插件方法
我们有一个插件,可以用来从我们的系统中进行打印和保存 应用程序。我们使用具有所有所需属性的标签来实例化它, 然后在 document.embeds[0] 上调用 Save() 或 Print() 方法 目的。
这曾经在 Firefox 3.5 及更早版本上完美运行,但现在不行了 在 Firefox 3.6 中工作时间更长。在3.6中,document.embeds[0].Save为null, 也就是说我们的自定义方法没有在此对象上定义。
知道为什么会发生这种情况,以及 Firefox 3.6 中发生了什么变化吗? 导致它?知道如何调试它并找到原因吗?而大多数 重要的是,任何解决方法的想法都可以让我们访问这个 方法?
谢谢,
夹板
We have a plugin that we use to enable printing and saving from our
app. We instantiate it using tag with all needed attributes,
and then call Save() or Print() method on the document.embeds[0]
object.
This used to work perfectly on Firefox 3.5 and earlier, but it no
longer works in Firefox 3.6. In 3.6, document.embeds[0].Save is null,
that is our custom methods are not defined on this object.
Any idea why this happens, and what has changed in Firefox 3.6 that
causes it? Any idea on how to debug it and find the cause? And most
important, any idea of a workaround that will allow us to access this
methods?
Thanks,
splintor
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 mozilla.dev.tech 中答案。插件论坛 - Firefox 3.6 删除了对 XPCOM 的支持。我们需要根据答案中建议的选项之一更改我们的插件。
Got an answer in mozilla.dev.tech.plugins forum - Firefox 3.6 removes support for XPCOM. We will need to change our plugin according to one of the options suggested in the answer.