Skip to content

展示文档

方法名:openDocument(document : string, password : string, configuration : string)

用于展示 PDF 文档。

参数:

名称类型描述
documentstring要展示的 PDF 文档的路径。
passwordstringPDF 文档密码。
configurationobj用于自定义 ComPDFKit 外观和行为的配置对象。
  • (Android)对于本地存储文件路径:
tsx
document = '/storage/emulated/0/Download/PDF_document.pdf'
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))
  • (Android)对于内容 Uri:
tsx
document = 'content://...'
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))
  • (Android)对于 assets 路径:
tsx
document = "file:///android_asset/..."
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))
  • (iOS)对于应用程序包文件路径:
tsx
document = 'pdf_document.pdf'
ComPDFKit.openDocument(document, '', ComPDFKit.getDefaultConfig({}))