从手机中选择文件时,应用程序会重新加载,并且在调试控制台中没有显示任何内容,我不明白为什么。
我在文件选择器中使用:https://ionicframework.com/docs/native/file-chooser/
我的控制器:
fileChoose(){
this.fileChooser.open().then((url) => {
console.log('url', url);
});
}
当我单击按钮时,它将打开手机上的文件浏览器,选择某些文件后,应用程序将重新加载。