无论如何要从 Firefox 插件读取 .plist 吗?
是否有一个预先存在的 XPCOM 人员可以让我从 Javascript 查询 .plist 文件,或者我需要使用 nsIFile 并自己解析 XML?
(作为背景,我无法控制的目录结构中有一个版本号,我需要从 .plist 中读取版本号,以便面向未来。)
Is there a pre-existing XPCOM guy that will let me interrogate a .plist file from Javascript, or do I need to use nsIFile and parse the XML myself?
(For background, there is a version number in a directory structure I don't control that I need to read from a .plist in order to be future-proof.)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 .plist 是什么,但我猜想它是某种 XML。
如果您正在解析 XML,请不要直接使用 nsIFile,请使用以下内容:解析和序列化 XML。您可能还想使用 E4X。
I don't know what a .plist is but I gather it's some sort of XML.
If you're parsing XML, don't use nsIFile directly, use this: Parsing and serializing XML. You might also like to use E4X.