我试图从我使用angularjs生成的超文本标记语言生成PDF,但是当我使用angular URL请求(通过requestify)而不是页面内容时,我得到的是index.html page...does的内容任何人都知道如何在ng-view上生成超文本标记语言内容
$routeProvider .when('/mediakit/:account', { templateUrl: 'app/mediakit/mediakit.html', controller: 'MediaKitCtrl' });
我想要使用mediakit.html作为模板的http://localhost:9000/mediakit/accountid的内容,而不是index.html的内容(其中的内容是通过ng-view加载的)
我用来生成PDF的代码
let pdf = require('html-pdf');
let requestify = require('requestify');
let outputPath = './server/public/';
//req.body.mediaKitURL --> is the URL that I load the content when I open in the browser
requestify.get(req.body.mediaKitURL).then(function (response) {
// Get the raw HTML response body
let html = response.body; --> //the content here is the content from index.html,
//I would like to get the content from the my angular route that uses mediakit.html (same when I open the URL in the browser)
let config = {format: 'letter'};
// Create the PDF
pdf.create(html, config).toFile(outputPath + '/media_kit_'+req.params.account+'.pdf', function (err, result) {
if (err) return console.log(err);
console.log(result); // { filename: '/pathtooutput/generated.pdf' }
res.status(200).json();
});
});我希望这是清楚的..。
发布于 2017-08-14 18:07:38
https://stackoverflow.com/questions/45665050
复制相似问题