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) ......
- import phantom from 'phantom';
- const pageToPdf = (url) => {
- phantom.create().then((ph) {
- ph.createPage().then((page) => {
- page.open(url).then((status) => {
- // 配置存储的pdf地址
- page.render('存储的地址.pdf').then((status) => {
- console.log('Page rendered');
- ph.exit();
- });
- });
- });
- });
- };
- pageToPdf('https://www.tongbanjie.com');
上一篇: 在理发店刚洗好头