本页内容
展示文档
方法名:openDocument(document : string, password : string, configuration : string)
用于展示 PDF 文档。
参数:
名称 | 类型 | 描述 |
---|---|---|
document | string | 要展示的 PDF 文档的路径。 |
password | string | PDF 文档密码。 |
configuration | obj | 用于自定义 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({}))