在这里,我要发布我从文件管理器中选择PDF的代码。我需要获取所选PDF的文件路径。我怎么得到它?
.html
<input type="file" (change)="selectPDF($event)" class="file-input upload-items" name='company_pdf' style="opacity: 0"
id="company_pdf" #fileInp>
.ts
selectPDF(fileInput: any) {
if (fileInput.target.files[0].type == 'application/pdf') {
console.log(fileInput.target.files)
this.PDFfiles.push(fileInput.target.files[0]);
if (this.PDFfiles.length > 4) {
this.disablePdfUplaod = true;
}
//this.PDFfile = fileInput.target.files[0];
} else {
this.shared.showToast('Please select PDF')
}
}
答案 0 :(得分:1)
您可以尝试Ionic FileOpener
this.fileOpener
.open(filePath, fileExtension)
.then(() => {
return true
});
答案 1 :(得分:1)
最好的方法是文档查看器
文档查看器
此插件提供了一个苗条的API,可以查看存储在应用程序资产文件夹(/ www / *)或可通过cordova文件插件访问的任何其他文件系统目录中的PDF文件。
$ ionic cordova plugin add cordova-plugin-document-viewer
$ npm install --save @ionic-native/document-viewer
import { DocumentViewer } from '@ionic-native/document-viewer';
constructor(private document: DocumentViewer) { }
const options: DocumentViewerOptions = {
title: 'My PDF'
}
this.document.viewDocument('assets/myFile.pdf', 'application/pdf', options)
答案 2 :(得分:1)
如果您要从文件管理器中进行选择,请执行以下操作,然后从其他答案中打开pdf
this.fileChooser.open()
.then(
uri => {
this.filePath.resolveNativePath(uri)
.then(file => {
this.fileDir = file;
this.fileName = file.substring(file.lastIndexOf("/") + 1);
// open the pdf
})
.catch(err => console.log(err));
}
)
.catch(error => {
this.showError(error);
});
答案 3 :(得分:0)
在这里您可以找到android和iOS平台的答案。如何选择pdf文档并查看该文档。
.html
<input (click)="openFile()" class="file-input upload-items" name='company_pdf' style="opacity: 0"
id="company_pdf" >
.ts
openFile() {
if (this.platform.is('android')) {
this.fileChooser.open()
.then(
uri => {
this.filePath.resolveNativePath(uri)
.then(url => {
console.log(url)
// url is path of selected file
var fileName = url.substring(url.lastIndexOf("/") + 1)
console.log(fileName)
// fileName is selected file name
})
.catch(err => console.log(err));
}
)
.catch(error => {
console.log(error)
});
} else {
this.docPicker.getFile('pdf')
.then(uri => {
console.log(uri)
var fileName = uri.substring(uri.lastIndexOf("/") + 1)
})
.catch(e => console.log(e));
}
}
希望对您有帮助。