我在开发firefox插件时遇到问题。我有标准数据/目录中的二进制文件。如何在main.js中获取其内容(字节字符串)?我尝试了很多但没有成功。谢谢。
最后我取得了一些进展:
var url = self.data.url("img.png")
var xhr = new XMLHttpRequest();
xhr.open('GET', url, false);
xhr.overrideMimeType("application/octet-stream")
xhr.send();
console.log(xhr.response.lenght) //4325
但是lenght!= img.png!为什么? 实际上img.png大小= 4552字节......