gpt4 book ai didi

node.js - 尝试合并 Node : PDFUnite + Nodejs中的pdf文件

转载 作者:太空宇宙 更新时间:2023-11-03 22:14:54 24 4
gpt4 key购买 nike

我在 Heroku 上有一个网站,并且正在使用 HyPDF 插件,它允许您以多种方式操作 pdf。具体来说,我正在尝试合并两个具有 URL 的 pdf 文件。

但是,它不起作用。我使用请求来提取 pdf 文件,然后使用请求来调用 PDFUnite。这也是一个回调 hell ,所以如果您对如何解决这个问题有任何建议,我将非常感激!

谢谢!

request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=4010e80d-9106-4824-95ab-799ec81c7fd0', encoding: null}, function(err, res, body) {
var pdf1 = body;

request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=28a388c6-ca0e-45a1-9aaf-9b6688c5a557', encoding: null}, function(err2, res2, body2){
var pdf2 = body2;

request.post(
'https://www.hypdf.com/htmltopdf',
{
json: {
user: HY_USER,
password: HY_PASS,
file_1: pdf1,
file_2: pdf2
}
},
function (error3, res3, body3) {

if (!error && res2.statusCode == 200) {
console.log('Public URL: ', body3.url);
console.log('Number of pages: ', res3.headers['hypdf-pages']);
}
});
})
});

/****************UDPATED********************/

我已经使用 https://gist.github.com/redfield/6724717 更新了代码作为指导。区别在于代码示例使用文件,而我使用 URL。

我尝试对其进行适当修改,但显然有些问题......如果我使用 body 或 body.toString('base64') 作为 pdf1 和 pdf2,则会收到 400 状态错误。否则,如果我使用 res 作为 pdf 文件,则会收到 504 错误。我不太确定应该如何发送文件,所以这只是猜测和检查。感谢您的帮助!

request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=4010e80d-9106-4824-95ab-799ec81c7fd0', encoding: null}, function(err, res, body) {
var pdf1 = body;

request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=28a388c6-ca0e-45a1-9aaf-9b6688c5a557', encoding: null}, function(err2, res2, body2){
var pdf2 = body2;

var form = new FormData();
form.append('user', HYPDF_USER);
form.append('password', HYPDF_PASSWORD);
form.append('test', 'true');
// form.append('bucket', 'hypdf_test');
form.append('key', 'hypdf_test.pdf');
form.append('public', 'true');
form.append('file1', pdf1);
form.append('file2', pdf2);

form.submit('https://www.hypdf.com/pdfunite', function(err, res) {
console.log('err ', err);
// res – response object (http.IncomingMessage)
console.log(res.statusCode, res.resume());
});
})
});

更新 #2我已经更新了代码,将我的代码与下面的 @remus 代码相结合。但是,我仍然收到错误 - 在 request.post 行上“无法调用 null 的方法‘hasOwnProperty’”。有什么想法吗?

request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=4010e80d-9106-4824-95ab-799ec81c7fd0', encoding: null}, function(err, res, body) {
var pdf1 = body.toString('base64');

request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=28a388c6-ca0e-45a1-9aaf-9b6688c5a557', encoding: null}, function(err2, res2, body2){
var pdf2 = body2.toString('base64');

var form = new FormData();
form.append('user', HY_UN);
form.append('password', HY_PASS);
form.append('public', 'true');
form.append('file1', fs.createReadStream(pdf1));
form.append('file2', fs.createReadStream(pdf1));

request.post({
url: 'https://www.hypdf.com/pdfunite',
formData: form
}, function(e, r, body) {
// body should be the binary result of the merged .pdf
console.log('e', e);
console.log('body', body);
});

})
});

更新3

request.post 的错误堆栈 - 我已经尝试了很多方法,但无法摆脱它。有什么想法吗?

TypeError: Cannot call method 'hasOwnProperty' of null
at appendFormValue (/node_modules/request/request.js:340:17)
at Request.init (/node_modules/request/request.js:354:11)
at new Request (/node_modules/request/request.js:140:8)
at request (/node_modules/request/index.js:55:10)
at Function.post (/node_modules/request/index.js:63:12)
**at Request._callback (/server/api/emailInvoice/emailInvoice.controller.js:34:12)**
at Request.self.callback (/node_modules/request/request.js:198:22)
at Request.emit (events.js:98:17)
at Request.<anonymous> (/node_modules/request/request.js:1073:14)
at Request.emit (events.js:117:20)
at IncomingMessage.<anonymous> (/node_modules/request/request.js:1019:12)
at IncomingMessage.emit (events.js:117:20)
at _stream_readable.js:929:16
at process._tickCallback (node.js:419:13)

最佳答案

首先,主要问题是您尝试在上一个 POST 请求中将二进制数据 (.pdf) 作为 JSON 进行 POST。我想这不会起作用 - 就像它可能需要多部分文件数据一样?其次,修复回调 hell 的一个简单方法是使用 :

var request = require('request');
var async = require('async');

async.parallel(function(callback) {
pdf1: function(callback) {
request.get({
url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=4010e80d-9106-4824-95ab-799ec81c7fd0'
}, function(err, r, body) {
callback(err, body);
});
},
pdf2: function(callback) {
request.get({
url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=28a388c6-ca0e-45a1-9aaf-9b6688c5a557'
}, function(err, r, body) {
callback(err, body);
});
},
function(err, results) {
var formData = {
user: HY_USER,
password: HY_PASS,
file_1: fs.createReadStream(results.pdf1),
file_2: fs.createReadStream(results.pdf2)
}
request.post({
url: 'https://www.hypdf.com/pdfunite',
formData: formData
}, function(e, r, body) {
// body should be the binary result of the merged .pdf
});
});
});

注意二进制数据流中的 fs.createReadStream 以及使用 pdfunite 的正确 URL。 .

您可能还想查看hypdf NPM 模块 - 我没有测试它,但它可能会让事情比手动构建请求更容易。

****更新****

问题出在使用 FormData() 上。由于某种原因,request.post 不喜欢它。我还可以通过将请求流直接注入(inject)表单来删除回调。另请注意,您必须将编码设置为 null。

    var finalpdf;
var formData = {
'user': HY_USER,
'password': HY_PASSWORD,
'test': 'true',
'public': 'true',
'file1': request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=4010e80d-9106-4824-95ab-799ec81c7fd0', encoding: null}),
'file2': request({url: 'http://www.sesamestreet.org/cms_services/services?action=download&uid=28a388c6-ca0e-45a1-9aaf-9b6688c5a557', encoding: null})
}


request.post({url: 'https://www.hypdf.com/pdfunite', encoding: null, formData: formData}, function(err, res3, body3){
finalPdf = body3.toString('base64');
});

关于node.js - 尝试合并 Node : PDFUnite + Nodejs中的pdf文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32150799/

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