Firefox 插件中 JS-Chrome-Content 功能的自动建议源

发布于 2024-10-04 20:10:26 字数 273 浏览 2 评论 0原文

关于 Mozillas 自动建议扩展教程 我想设计自己的自动建议扩展。本教程使用 autocompletesearchparam 参数中定义的 json 作为建议源。

我将如何定义另一个源,例如返回对象的 chrome-content js 文件中的库方法?

Regarding Mozillas Auto-Suggest Extension Tutorial I'd like to design my own auto-suggest extension. The tutorial uses json defined in the autocompletesearchparam param as suggestion-source.

How would I define another source, like a library method from a chrome-content js-file that returns an object?

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

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

发布评论

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

评论(1

梦里人 2024-10-11 20:10:26

只需使用 JSON.stringify() 之类的方法获取该对象并序列化它(假设它采用扩展所需的格式,如果不是,您将需要操作您的对象)。现在将结果字符串附加到元素的“autocompletesearchparam”属性或“searchParam”属性。应该就是这么简单。

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects /JSON/stringify

Just grab that object and serialize it, using something like JSON.stringify() (assuming its in the format that the extension wants, if not, you'll need to manipulate your object). Now attach your result string to the the "autocompletesearchparam" attribute or "searchParam" property of your element. Should be as simple as that.

https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/JSON/stringify

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