从 XPCOM 组件添加条目到 Firefox 缓存
nsICacheSession 有一个方法 openCacheEntry(),它返回现有的缓存条目。是否有诸如 createCacheEntry() 之类的方法可以创建缓存条目。我想创建一个 XPCOM 对象,它将从磁盘读取文件并将其写入 Firefox 缓存。
谢谢
The nsICacheSession has a method openCacheEntry() which returns an existing cache entry. Is there a method such as createCacheEntry() that will create a cache entry. I want to create an XPCOM object that will read files from disk and write them to Firefox cache.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如 MDC nsICache 接口参考中所述,使用 ACCESS_WRITE 打开条目如果该条目尚不存在,则将创建该条目(如果已存在,则该条目将被取消,因此您可以用新条目替换它)。
对于原始海报来说可能有点太晚了,但这对于其他人来说可能很有用。
As stated in MDC nsICache interface reference opening an entry with ACCESS_WRITE will create the entry if it doesn't already exist (if it already exists, the entry will be doomed so you can replace it with a new one).
Perhaps a little too late for the original poster, but this can be useful for other people out there.