欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

phantom.js - HTML To PDF

程序员文章站 2022-07-07 20:41:37
import phantom from 'phantom'; const pageToPdf = (url) => { phantom.create().then((ph) { ph.createPage().then((page) => { page.open(url).then((status) ......
  1. import phantom from 'phantom';  
  2. const pageToPdf = (url) => {  
  3.  phantom.create().then((ph) {  
  4.  ph.createPage().then((page) => {  
  5.   page.open(url).then((status) => {  
  6.   // 配置存储的pdf地址  
  7.   page.render('存储的地址.pdf').then((status) => {  
  8.    console.log('Page rendered');  
  9.    ph.exit();  
  10.   });  
  11.   });  
  12.  });  
  13.  });  
  14. };  
  15. pageToPdf('https://www.tongbanjie.com');