Я хочу запускать/открывать входные данные, поступающие с другой страницы в Ionic 4.
На стр. 1 у меня есть кнопка, чтобы перейти к модальному, в модуле страницы. Я хочу автоматически запускать диалог <input file>
Составная часть
ionViewWillEnter() {
document.getElementById('file').click(); // Tried with this one 1st, this only works in Internet Explorer / Edge
this.fileInput.nativeElement.click(); // And also this with @ViewChild
}
HTML
<input type="file" name="file" #file id="file" (change)="fileChange($event)" required>