API 参数详解
el
类型:
string
|HtmlElement
说明: 指定需要打印的元素。可以是 CSS 选择器(如
#elementId
)或实际的 DOM 元素节点(如document.getElementById('elementId')
)。默认值: 无
示例:
ts// 使用 CSS 选择器 new VuePrintNext({ el: '#printMe' }); // 使用 DOM 节点 const element = document.getElementById('printMe'); new VuePrintNext({ el: element });
standard
类型:
string
说明: 指定打印的文档类型。可以设置为
html5
、loose
或strict
。默认使用html5
。默认值:
html5
示例:
typescriptnew VuePrintNext({ el: '#printMe', standard: 'strict' // 使用严格模式 });
noPrintSelector
类型:
string[]
|string
说明: 指定在打印时需要忽略的元素。可以传入一个 CSS 选择器字符串或一个字符串数组。如果传入数组,数组中的所有选择器都会被忽略。
默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', noPrintSelector: '.no-print' // 忽略具有 no-print 类的元素 }); // 忽略多个选择器 new VuePrintNext({ el: '#printMe', noPrintSelector: ['.no-print', '.ignore-me'] });
popTitle
类型:
string
说明: 设置打印窗口的页眉标题。如果未设置,将使用当前页面的
<title>
标签内容作为页眉。默认值: 当前页面的
<title>
标签内容示例:
typescriptnew VuePrintNext({ el: '#printMe', popTitle: '打印标题' // 自定义标题 });
preview
类型:
boolean
说明: 是否启用打印预览功能。启用后,打印前会显示一个预览窗口。
默认值:
false
示例:
typescriptnew VuePrintNext({ el: '#printMe', preview: true // 启用打印预览 });
previewTitle
类型:
string
说明: 设置预览窗口的标题。
默认值:
'打印预览'
示例:
typescriptnew VuePrintNext({ el: '#printMe', preview: true, previewTitle: '预览打印' // 自定义预览标题 });
previewPrintBtnLabel
类型:
string
说明: 设置预览窗口中的打印按钮标签。
默认值:
'打印'
示例:
typescriptnew VuePrintNext({ el: '#printMe', preview: true, previewPrintBtnLabel: '开始打印' // 自定义打印按钮标签 });
extraCss
类型:
string
说明: 指定额外的 CSS 文件路径,这些 CSS 文件会被应用到打印内容中。
默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', extraCss: 'https://cdn.example.com/extra.css' // 添加额外的 CSS });
extraHead
类型:
string
说明: 指定额外的
<head>
内容,例如自定义的<meta>
标签或其他<link>
标签。默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', extraHead: '<meta name="viewport" content="width=device-width, initial-scale=1.0">' // 添加额外的 <head> 内容 });
url
类型:
string
说明: 指定要打印的网址内容。必须保证该 URL 符合同源策略。
默认值: 无
示例:
typescriptnew VuePrintNext({ url: 'https://example.com/print-content' // 打印指定 URL 内容 });
asyncUrl
类型:
function
说明: 一个函数,用于异步加载 URL 内容。函数接受一个
resolve
回调,用于提供异步加载完成后的 URL。默认值: 无
示例:
typescriptnew VuePrintNext({ asyncUrl(resolve) { setTimeout(() => { resolve('https://example.com/print-content'); // 异步加载 URL }, 2000); } });
zIndex
类型:
number
说明: 设置预览窗口的
z-index
值,以确保它在其他元素之上。默认值:
20002
示例:
typescriptnew VuePrintNext({ el: '#printMe', zIndex: 30000 // 设置预览窗口的 z-index });
openCallback
类型:
function
说明: 打印窗口打开时的回调函数。
默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', openCallback() { console.log('打印窗口已打开'); } });
closeCallback
类型:
function
说明: 打印窗口关闭时的回调函数,无论用户确认还是取消打印,都会触发此回调。
默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', closeCallback() { console.log('打印窗口已关闭'); } });
beforeOpenCallback
类型:
function
说明: 打印窗口打开前的回调函数,仅在打印预览使用时有效。
默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', preview: true, beforeOpenCallback() { console.log('打印预览窗口即将打开'); } });
previewBeforeOpenCallback
类型:
function
说明: 预览框架
iframe
加载前的回调函数,仅在打印预览使用时有效。默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', preview: true, previewBeforeOpenCallback() { console.log('预览框架 iframe 加载前'); } });
previewOpenCallback
类型:
function
说明: 预览框架
iframe
加载完成后的回调函数,仅在打印预览使用时有效。默认值: 无
示例:
typescriptnew VuePrintNext({ el: '#printMe', preview: true, previewOpenCallback() { console.log('预览框架 iframe 加载完成'); } });