离子过滤器FileChooser

时间:2018-09-24 03:44:47

标签: ionic3 filechooser

这是我实现FileChooser的代码

selectFile(){
    this.fileChooser.open()
    .then(uri => {
      this.otherFiles.push(uri);
      this.filePath.resolveNativePath(uri).then( file=> {
        var filename = file.substr(file.lastIndexOf('/') + 1);
        this.otherFilesNames.push(filename);
        console.log("file: " + file);
        console.log("filename: " + filename);
      }).catch(err => console.log(err))

    })
    .catch(e => console.log(e));
  }

但是我想限制FileChooser显示的文件类型,例如,我只希望它显示PDF文件。我可以这样做吗?

0 个答案:

没有答案