我使用输入文件,我想获取我的文件并将其保存在一个文件夹中。而且我发现更多,但我不会到达。
<ion-content>
<div #myChart></div>
<div class="modal-body">
<input type="file" (change)="fileChangeEvent($event)" placeholder="Upload file..." />
</div>
</ion-content>
public fileChangeEvent(fileInput: any){
if (fileInput)
{
let files = fileInput.target.files;
if (files[0]["type"] === "")
{
console.log(files[0]["name"]);
console.log(files);
}else{
//notification le type est incorrect
alert("Pas bon type");
}
}
}