Chrome扩展程序 - PDF文件的“File_get_contents”,在标签页中打开

时间:2015-05-17 06:55:54

标签: pdf google-chrome-extension

是否有可能获得以谷歌浏览器打开的pdf的文件内容。

我开始使用chrome扩展,权限“activetabs”等...

阅读选项卡的HTML代码正常,但我需要直接获取文件数据, 像php中的file_get_contents($ pdf)。

这是如何工作的?有人有经验吗?

1 个答案:

答案 0 :(得分:0)

现在我找到了解决方案:

使用Javascript:

//Read file
var xhr = new XMLHttpRequest();
xhr.open('GET', 'file:///C:/Scource_File.pdf', true);
xhr.responseType = 'blob';
xhr.send();


//Send file
var xhr = new XMLHttpRequest();
var fd = new FormData();
fd.append('server-method', 'upload');
fd.append('file', blob);
xhr.open('POST', 'http://www.example.com/get_file_via_post.php', false);
xhr.send(fd);