Mozilla 扩展命名空间:如何区分我的函数和其他包的函数?

发布于 2024-10-04 16:19:27 字数 586 浏览 3 评论 0原文

我正在开发一个 Firefox (FF) 扩展,并在按下 FF 上的特定按钮时调用一个函数。有时,FF 无法从我的脚本文件中找到我的函数,即使它在那里。相反,它会在浏览器扩展中搜索它并引发错误。

一般来说,如何在函数之前使用命名空间,以将其与其他包中可能同名的函数清楚地区分开来。

例如:有没有类似的东西:

<script type="application/javascript" src="chrome://mythird/content/script.js"/>
<statusbar id="status-bar">
    <statusbarpanel id="mythird-statusbarpanel" label="mythird" onclick="chrome://mythird/myalert();"/>
</statusbar>

而不仅仅是:

    <statusbarpanel id="mythird-statusbarpanel" label="mythird" onclick="myalert();"/>

I am developing a Firefox (FF) extension and am calling a function when a particular button on FF is pressed. Sometimes, FF is not able to find my function from my script file even if it is there. Instead, it searches for it in the browser extension and throws an error.

In general, how do I use namespace before my function that will clearly differentiate it from functions of perhaps the same name in other packages.

For e.g.: Is there something like:

<script type="application/javascript" src="chrome://mythird/content/script.js"/>
<statusbar id="status-bar">
    <statusbarpanel id="mythird-statusbarpanel" label="mythird" onclick="chrome://mythird/myalert();"/>
</statusbar>

instead of just:

    <statusbarpanel id="mythird-statusbarpanel" label="mythird" onclick="myalert();"/>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独守阴晴ぅ圆缺 2024-10-11 16:19:27

您可以使用普通对象作为函数的命名空间。为该对象指定您的扩展的名称(该名称应该是唯一且很棒的),您应该会非常节省。

在您的脚本文件中:

var gYourExtensionName = {};

gYourExtensionName.myalert = function(){/*...*/};

以及在 XUL 中:

<script type="application/javascript" src="chrome://mythird/content/script.js"/>
<statusbar id="status-bar">
    <statusbarpanel id="mythird-statusbarpanel" 
                    label="mythird" 
                    onclick="gYourExtensionName.myalert()" />
</statusbar>

您还应该阅读: Firefox 扩展:全球命名空间污染

You can use a normal object as namespace of your functions. Give the object the name of your extension (which should be unique and awesome) and you should be pretty save.

In your script file:

var gYourExtensionName = {};

gYourExtensionName.myalert = function(){/*...*/};

and in XUL:

<script type="application/javascript" src="chrome://mythird/content/script.js"/>
<statusbar id="status-bar">
    <statusbarpanel id="mythird-statusbarpanel" 
                    label="mythird" 
                    onclick="gYourExtensionName.myalert()" />
</statusbar>

You should also read: Firefox Extensions: Global Namespace Pollution

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文