Firefox 插件中 JS-Chrome-Content 功能的自动建议源
关于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用
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