我在sencha touch cordova中创建了一个应用程序,在我的应用程序中,我有一个下载PDF的功能。
我已成功下载了pdf文件,但现在我想使用JavaScript将PDF转换为base64字符串。
有谁可以告诉我该怎么做?
答案 0 :(得分:0)
查看您的JavaScript环境是否具有“atob
”和“btoa
”功能:
var encodedData = window.btoa("Hello, world"); // encode a string
var decodedData = window.atob(encodedData); // decode the string
这些字符串将字符串转换为Base64编码。
答案 1 :(得分:0)
尝试使用以下逻辑。
<input id="inputFile" type="file" onchange="convertToBase64();" />
function convertToBase64(){
//Read File
var selectedFile = document.getElementById("inputFile").files;
//Check File is not Empty
if (selectedFile.length > 0) {
// Select the very first file from list
var fileToLoad = selectedFile[0];
// FileReader function for read the file.
var fileReader = new FileReader();
var base64;
// Onload of file read the file content
fileReader.onload = function(fileLoadedEvent) {
base64 = fileLoadedEvent.target.result;
// Print data in console
console.log(base64);
};
// Convert data to base64
fileReader.readAsDataURL(fileToLoad);
}
}
注意:此代码段取自stackoverflow,但我不记得链接:(