gpt4 book ai didi

javascript - 如果我只有 PDF URL,如何以附件形式发送 PDF

转载 作者:行者123 更新时间:2023-12-03 01:43:43 25 4
gpt4 key购买 nike

我有一个 ionic 应用程序,它根据用户的输入进行某些计算。计算后,结果通过 API(generatePDF)调用转换为 PDF。另一个要求是通过电子邮件发送相同的 PDF。 API(sendMail)也是为此而设计的。 enctype='multipart/form-data' 在 sendMail API 的 header 部分中设置。

我现在有了 PDF URL,它是作为generatePDF API 的响应而获得的。使用此 URL 如何将 PDF 附加到我要发送的邮件中?

有人可以帮忙吗?

最佳答案

感谢@MissakBoyajian 的帮助。这就是我所做的。

安装了 ionic Native 的文件传输和文件插件

this.platform.ready().then(() => {

const fileTransfer: FileTransferObject = this.transfer.create();
const pdfLocation = this.pdffile;//pdffile is the PDF URL which we got as the response from the generatePDF API

fileTransfer.download(pdfLocation, this.storageDirectory + "filename.pdf").then((entry) => {
const alertSuccess = this.alertCtrl.create({
title: `Download Succeeded!`,
subTitle: `PDF was successfully downloaded to: ${entry.toURL()}`,
buttons: ['Ok']
});

alertSuccess.present();

this.file.readAsDataURL(this.storageDirectory, 'filename.pdf')
.then((datafile) =>{
this.attachpdf(id,datafile);
})
.catch((err) =>{
console.log("Error is that "+err);
});

}, (error) => {

const alertFailure = this.alertCtrl.create({
title: `Download Failed!`,
subTitle: `PDF was not successfully downloaded. Error code: ${error.code}`,
buttons: ['Ok']
});
alertFailure.present();
});
});

使用一个函数(我从搜索中得到)将base64data转换为blob。

    public dataURItoBlob(dataURI) {
// convert base64/URLEncoded data component to raw binary data held in a string
var byteString;
if (dataURI.split(',')[0].indexOf('base64') >= 0)
byteString = atob(dataURI.split(',')[1]);
else
byteString = unescape(dataURI.split(',')[1]);
// separate out the mime component
var mimeString = dataURI.split(',')[0].split(':')[1].split(';')[0];

// write the bytes of the string to a typed array
var ia = new Uint8Array(byteString.length);
for (var i = 0; i < byteString.length; i++) {
ia[i] = byteString.charCodeAt(i);
}

return new Blob([ia], {type:mimeString});
}

那么,

    public attachpdf(emailid,filetoattach){
let headers = new Headers();
headers.append(...);
headers.append('enctype','multipart/form-data');

var blob = this.dataURItoBlob(filetoattach);

var data ={... };

var formData = new FormData();
formData.append("data",JSON.stringify(data));
formData.append("doc",blob);

this.http.post('sendMail API',formData, {headers: headers})
.map(res => res.json())
.subscribe(results => {
...
},
error=>{
..
}
)
}

终于成功了。

关于javascript - 如果我只有 PDF URL,如何以附件形式发送 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50734253/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com