获取文件并将文件保存在文件夹中 - Angular 2 / Ionic

时间:2017-05-10 10:10:53

标签: angular ionic-framework

我使用输入文件,我想获取我的文件并将其保存在一个文件夹中。而且我发现更多,但我不会到达。

<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");
            }
        }
    }

0 个答案:

没有答案